Install
$ agentstack add mcp-stanleychanh-mcp2xiaozhi Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Dangerous shell/eval execution.
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ● Dynamic code execution Used
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
mcp2xiaozhi
[English](README.md) | [中文](README_CN.md)
> Bridge any MCP server (stdio / SSE / StreamableHTTP) to a Xiaozhi server over WebSocket.
[](https://pypi.org/project/mcp2xiaozhi/) [](https://pypi.org/project/mcp2xiaozhi/) [](LICENSE) [](https://github.com/StanleyChanH/MCP2Xiaozhi/actions/workflows/ci.yml) [](https://stanleychanh.github.io/MCP2Xiaozhi/)
mcp2xiaozhi is a general-purpose bridge that connects any Model Context Protocol (MCP) server to a Xiaozhi server. The Xiaozhi server acts as an MCP client over a WebSocket: it sends JSON-RPC tool calls as text frames and expects JSON-RPC replies. This package receives those frames and relays them — at the protocol level — to your MCP server, wherever it runs and whatever transport it speaks.
JSON-RPC over WebSocket (text frames)
┌──────────────────────┐ wss://… ┌──────────────────────┐
│ Xiaozhi server │ ◄──────────► │ mcp2xiaozhi bridge │
│ (acts as MCP client)│ └──────────┬───────────┘
└──────────────────────┘ │ JSON-RPC
│ over MCP transport
┌──────────────────────┴───────────────┐
│ stdio │ SSE │ HTTP │
▼ ▼ ▼ ▼
local process remote server remote server
Features
- 🔄 Three transports, one bridge —
stdio,sse, andstreamablehttp(http), all native, nomcp-proxysubprocess required. - 🧱 Protocol-level relay — frames are parsed as
JSONRPCMessage(wrapped in the SDK'sSessionMessage), validated, then re-serialized. Malformed frames are logged and dropped instead of crashing the bridge. - 🔁 Automatic reconnection — exponential backoff with jitter on either side dropping; clean closes distinguished from abnormal ones.
- 🗂️ Multi-server — run one bridge or every server in your config; each server gets its own endpoint.
- ⚙️ Config-driven — drop-in compatible with the
mcp_config.jsonshape from Xiaozhi's officialmcp-calculatordemo. - 🖥️ Cross-platform — UTF-8 console handling on Windows, graceful
SIGINT/SIGTERMshutdown. - 📦 Real package —
pyproject.toml, src layout, type hints, CLI entry point, tests, CI, managed with uv.
Install
With uv (recommended):
uv tool install mcp2xiaozhi # install the CLI as a tool
# or, in a project:
uv add mcp2xiaozhi
With pip:
pip install mcp2xiaozhi
From source (for development):
git clone https://github.com/StanleyChanH/MCP2Xiaozhi.git
cd mcp2xiaozhi
uv sync --extra dev
Quick start
- Create an MCP server (or use an existing one). A minimal stdio calculator:
```python # calculator.py from mcp.server.fastmcp import FastMCP import math
mcp = FastMCP("Calculator")
@mcp.tool() def calculator(pythonexpression: str) -> dict: """Evaluate a Python math expression.""" return {"success": True, "result": eval(pythonexpression, {"math": math})}
if __name__ == "__main__": mcp.run(transport="stdio") ```
- Describe your servers in
mcp_config.json:
``json { "mcpServers": { "calculator": { "type": "stdio", "command": "python", "args": ["calculator.py"] } } } ``
- Set the Xiaozhi WebSocket endpoint and run:
``bash export MCP_ENDPOINT="wss://api.your-xiaozhi-server.example/mcp/" mcp2xiaozhi run calculator ``
Or run every enabled server at once:
``bash mcp2xiaozhi run # all enabled servers mcp2xiaozhi list # show configured servers mcp2xiaozhi version ``
Configuration
Config discovery order: --config PATH → $MCP_CONFIG → ./mcp_config.json.
Schema
{
"mcpServers": {
"my-server": {
"type": "stdio", // stdio | sse | streamablehttp | http
"disabled": false, // optional; skip when running all
// stdio-only
"command": "python",
"args": ["-m", "my_server"],
"env": { "FOO": "bar" }, // merged onto the current environment
// sse / streamablehttp-only
"url": "https://example.com/mcp",
"headers": { "Authorization": "Bearer xxx" },
"timeout": 5.0, // connect timeout (s)
"sse_read_timeout": 300.0, // long-lived read timeout (s)
// optional per-server Xiaozhi endpoint
"endpoint": "wss://api.example.com/mcp/"
}
}
}
Endpoint resolution
Each server needs the Xiaozhi WebSocket endpoint it should connect to. Resolved in priority:
endpointfield in the server config$MCP_ENDPOINT_environment variable (name uppercased, non-alphanumeric →_)- global
$MCP_ENDPOINT
When running multiple servers, give each its own endpoint — otherwise the Xiaozhi server cannot route tool calls to the right server. The bridge will warn if a server falls back to the global endpoint while others are running.
Transports
| Type | Use when | Notes | |------|----------|-------| | stdio | Your MCP server is a local script/binary | Spawns it as a child process; env merged with the current process. | | sse | Legacy remote MCP server using Server-Sent Events | GET /sse for the stream, POST for requests — handled by the SDK. | | streamablehttp / http | Modern remote MCP server (recommended) | The production HTTP transport. http is an alias. |
All three are implemented with the official mcp Python SDK transport primitives, which yield (read, write) memory streams carrying SessionMessage objects. The bridge pumps messages between the WebSocket and those streams — it never spawns mcp-proxy.
CLI
mcp2xiaozhi [--config PATH] [--log-level LEVEL]
commands:
run [SERVER] Run one server (or all enabled if omitted / --all)
list List configured servers
version Print version
options:
--endpoint URL Override the Xiaozhi endpoint (single-server runs only)
--log-level DEBUG | INFO | WARNING | ERROR | CRITICAL
python -m mcp2xiaozhi … works too.
Programmatic usage
import asyncio
from mcp2xiaozhi import McpBridge, load_config, resolve_endpoint, get_global_endpoint
async def main():
config = load_config()
server = config.require("calculator")
endpoint = resolve_endpoint(server, global_endpoint=get_global_endpoint())
bridge = McpBridge(server, endpoint)
await bridge.run() # reconnects forever until cancelled
asyncio.run(main())
Run several at once with ServerManager:
from mcp2xiaozhi import ServerManager, load_config
manager = ServerManager.from_config(load_config())
asyncio.run(manager.run())
Deployment
The bridge is a long-lived relay — the host running it must stay online, because the Xiaozhi server never connects to your MCP server directly. For remote SSE/HTTP MCP servers you can deploy it to any always-on machine (VPS, NAS, Raspberry Pi, container) and turn your laptop off.
Quick options:
# Docker (any platform) — the repo ships Dockerfile + docker-compose.yml
docker compose up -d --build
# Linux systemd — auto-start on boot, restart on crash
sudo systemctl enable --now mcp2xiaozhi
# Windows — NSSM wraps it as a native service
nssm install mcp2xiaozhi mcp2xiaozhi.exe
➡️ Full guide (config & secrets, multi-server, logs, upgrade): the Deployment docs.
Development
uv sync --extra dev # install dev dependencies
uv run ruff check . # lint
uv run mypy src # type check
uv run pytest # tests
uv build # build sdist + wheel
See [CONTRIBUTING.md](CONTRIBUTING.md).
License
MIT — see [LICENSE](LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: StanleyChanH
- Source: StanleyChanH/MCP2Xiaozhi
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.