generated from Labyricorn/labyricorn-project-template
CI / frontend-quality (push) Canceled after 0s
- All 'voicebox'/'Voicebox'/'VOICEBOX' strings replaced with 'talkbox'/'TalkBox'/'TALKBOX' - Port changed from 17493 to 17494 (avoids conflict with upstream VoiceBox) - MCP tool namespace: voicebox.* -> talkbox.* - App bundle ID: sh.voicebox.app -> com.talkbox.app - Binary names: voicebox-server -> talkbox-server, voicebox-mcp -> talkbox-mcp - Docker user/group: voicebox -> talkbox - Database: voicebox.db -> talkbox.db - Env vars: VOICEBOX_* -> TALKBOX_* - Asset files renamed: voicebox-logo.* -> talkbox-logo.*, etc. - External binaries in tauri.conf.json updated to talkbox-server/talkbox-mcp
11 lines
339 B
Python
11 lines
339 B
Python
"""Model Context Protocol server — exposes TalkBox tools to local AI agents.
|
|
|
|
Mounts a FastMCP instance at /mcp on the main FastAPI app (Streamable HTTP).
|
|
A bundled stdio shim (backend/mcp_shim) forwards JSON-RPC into the same
|
|
endpoint for MCP clients that only speak stdio.
|
|
"""
|
|
|
|
from .server import mount_into
|
|
|
|
__all__ = ["mount_into"]
|