MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

MCP server by iiishop

Created 5/2/2026
Updated about 20 hours ago
Repository documentation and setup instructions

Xiaozhi MCP Node

CLI-first MCP adapter for Xiaozhi with two runtime roles:

  • server: connects to Xiaozhi endpoint and serves tools
  • client: connects to a server over WebSocket and extends server capabilities

Both roles run from the same codebase.

Install

uv sync

Configuration

Create config file:

cp config.example.toml config.toml

Key sections:

  • [xiaozhi]: Xiaozhi endpoint and server script for mcp_router.py
  • [cluster]: server-side WebSocket listener for client nodes
  • [client]: client-side connection settings
  • [components]: folder path for user-provided components

catalog_install_component installs to the same folder configured by [components].folder unless [catalog].install_folder is explicitly set.

user_components/ is ignored by git by design. Put custom components there.

Run as Server

Use the existing Xiaozhi router (server role is default):

uv run start --config config.toml

Or directly:

uv run python app_server.py --role server --config config.toml

Run as Client

On Windows/macOS/Linux client node:

uv run python app_server.py --role client --config config.toml

Client will register tools to server using WebSocket (client.server_url) and keep reconnecting.

Built-in tools (server role)

  • exa_web_search(...)
  • catalog_list_components()
  • catalog_get_component_readme(component_name)
  • catalog_install_component(component_name)

Cluster tools (server role, when [cluster].enabled=true)

  • cluster_list_remote_tools()
  • cluster_call_remote_tool(tool_name, arguments_json="{}")

Notes

  • Tool names must be globally unique across server + clients.
  • config.toml is ignored and should hold secrets/tokens.
  • Logs are plain text and intended for CLI deployment.
Quick Setup
Installation guide for this server

Install Package (if required)

uvx xiaozhimcp

Cursor configuration (mcp.json)

{ "mcpServers": { "iiishop-xiaozhimcp": { "command": "uvx", "args": [ "xiaozhimcp" ] } } }