Files
jamiepine--voicebox/backend/mcp_shim/__init__.py
T
wehub-resource-sync b4eee4aa71
CI / frontend-quality (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:09:02 +08:00

11 lines
480 B
Python

"""Stdio → Streamable HTTP bridge for the Voicebox MCP server.
Some MCP clients only know how to spawn a subprocess and talk to it over
stdin/stdout (the "stdio" transport). This package is a ~150-line adapter:
the client spawns us as ``voicebox-mcp``; we proxy every JSON-RPC frame
to http://127.0.0.1:17493/mcp/ and stream responses back out.
All the real work (tools, models, inference) lives in the Voicebox server
process — this package contains no business logic.
"""