unified_mcp
Provides web search capabilities via the Brave Search API.
Provides GitHub integration for repository management, issues, pull requests, and other GitHub features.
Provides SQLite database operations such as querying and modifying databases.
Provides documentation query capabilities via Upstash Context7 for resolving library IDs and querying documentation.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@unified_mcplist the available servers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Unified MCP Server
A unified MCP server that mounts multiple MCP servers using a mcp.json configuration file, similar to Claude Desktop and Cursor.
Quick Start
Configure servers in
mcp.json:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest"]
},
"context7": {
"command": "npx",
"args": ["@upstash/context7-mcp"]
},
"filesystem": {
"command": "npx",
"args": ["@modelcontextprotocol/server-filesystem", "/tmp"],
"disabled": true
}
}
}Run with Docker:
docker-compose up --buildOr run locally:
uv run main.pyRelated MCP server: mcpd-proxy
Features
Single Endpoint: Access all MCP servers through
http://localhost:8929/mcpTool Prefixing: All tools are prefixed with server name (e.g.,
playwright_navigate)Dynamic Mounting: Add/remove servers by editing
mcp.jsonand restartingBuilt-in Management: Use
list_serversandlist_toolsto inspect configurationHTTP Streaming: Full MCP-over-HTTP support with streaming protocol
Configuration
mcp.json Format
{
"mcpServers": {
"server-name": {
"command": "executable",
"args": ["arg1", "arg2"],
"env": {
"ENV_VAR": "value"
},
"disabled": false
}
}
}command: Executable to runargs: Command line argumentsenv: Environment variables (merged with system env)disabled: Set totrueto disable the server
Available Official Servers
@playwright/mcp@latest- Web automation (22 tools)@upstash/context7-mcp- Documentation queries (2 tools)@modelcontextprotocol/server-filesystem- File operations@modelcontextprotocol/server-brave-search- Web search@modelcontextprotocol/server-sqlite- SQLite database@modelcontextprotocol/server-github- GitHub integration
Tools
Built-in Tools
list_servers- Show all configured servers and their statuslist_tools- Show all available tools from mounted servers
Mounted Server Tools
All tools from mounted servers are prefixed with the server name:
playwright_navigate- Navigate to a URLplaywright_click- Click on elementscontext7_query-docs- Query documentationcontext7_resolve-library-id- Resolve library IDs
Testing
Use the MCP Inspector to test your server:
npx @modelcontextprotocol/inspector \
--transport http \
--url http://localhost:8929/mcpEnvironment Variables
HOST- Server host (default: localhost)PORT- Server port (default: 8929)DEBUG- Enable debug logging (default: false)
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for progressive tool usage at any scale (see https://klavis.ai)
The MCP server that finds MCP servers. Aggregates Official Registry, Glama, and Smithery.
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceA proxy MCP server that aggregates tools from multiple MCP servers and forwards calls to the appropriate server, used with the Metatool App for GUI tool management.5Apache 2.0
mcpd-proxyofficial
AlicenseNot gradedqualityAmaintenanceAn MCP server that acts as a proxy between IDEs and the mcpd daemon, exposing all mcpd-managed MCP servers through a unified interface.37 npm20Apache 2.0- AlicenseNot gradedqualityCmaintenanceA universal MCP server that acts as a unified gateway for dynamically connecting and managing multiple MCP servers via a single HTTP endpoint.7 npm6MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that proxies multiple MCP servers, allowing you to configure and access multiple MCP servers through a single endpoint with namespace support.4MIT