MCP Gateway
Aggregates multiple Model Context Protocol servers into a single gateway to provide unified search, description, and execution of tools. It reduces context limit issues by dynamically fetching specific tool schemas only when needed rather than loading all available tools at once.
README
MCP Gateway
MCP Gateway is a server aggregation tool that connects multiple Model Context Protocol (MCP) servers into a single gateway, exposing all tools from connected servers through unified search, describe, and invoke interfaces and it exposes only 5 tools.
The Context Limit Problem
When connecting an client (Claude Code, Opencode, etc.) to multiple MCP servers, each server lists all its tools. With 10+ MCPs each exposing 10-50 tools, you can easily exceed 500+ tool descriptions in the system prompt:
10 servers × 20 tools each = 200+ tool descriptions
Each tool: 200-500 chars → 40KB-100KB of description just for tool schemas!
This creates two problems:
- Context overflow: Many LLMs hit their context limit before any conversation happens
- Cognitive overload: LLMs struggle to choose the right tool from hundreds of options
The Gateway Solution
MCP Gateway solves this by providing tool search instead of dumping all tool schemas:
┌─────────────┐ gateway.search ┌─────────────────┐ kubernetes::pods_list ┌──────────────────┐
│ AI Client │ ───────────────────► │ MCP Gateway │ ─────────────────────────► │ Kubernetes MCP │
│ │ │ │ │ │
│ │ ◄────────────────────│ │ ◄───────────────────────── │ │
└─────────────┘ pods_list schema └─────────────────┘ pods output └──────────────────┘
How It Works
MCP Gateway operates as both an MCP client (connecting to upstream servers) and an MCP server (exposing tools to downstream clients):
┌──────────────┐ MCP ┌─────────────────┐ MCP ┌──────────────────┐
│ AI Client │ ◄──────────── │ MCP Gateway │ ◄──────────── │ Upstream Server │
│ (Claude, etc)│ │ (this gateway) │ │ (playwright, │
└──────────────┘ └─────────────────┘ │ kubernetes...) │
└──────────────────┘
- Gateway starts and reads configuration
- For each configured upstream server, Gateway connects via stdio (local) or HTTP/WebSocket (remote)
- Gateway fetches the tool catalog from each server
- All tools are indexed in a unified catalog with search capabilities
- AI clients connect to Gateway and use
gateway.searchto find relevant tools - Only the tools the client actually needs are invoked
You will notice around ~40% reduction of initial token used.
Installation
Claude Code
Add to your Claude MCP configuration:
{
"mcpServers": {
"gateway": {
"command": "bunx",
"args": ["github:eznix86/mcp-gateway"]
}
}
}
OpenCode
Add to your OpenCode MCP configuration:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mcp-gateway": {
"type": "local",
"command": ["bunx", "github:eznix86/mcp-gateway"]
},
}
}
You may append your global AGENTS.md (~/.config/opencode/AGENTS.md) with this template.
You may now just simple enumerate the MCP available.
Configuration
MCP Gateway reads configuration from a JSON file. By default, it looks for:
- Path provided as first command-line argument
MCP_GATEWAY_CONFIGenvironment variable~/.config/mcp-gateway/config.json
Configuration Format
{
"local-server": {
"type": "local",
"command": ["bun", "run", "/path/to/server.ts"],
},
"remote-server": {
"type": "remote",
"url": "https://mcp.example.com",
"enabled": true
},
"websocket-server": {
"type": "remote",
"url": "wss://mcp.example.com/ws",
"enabled": true
}
}
Each entry specifies:
type:"local"or"remote"command(local only): Array with command and arguments to spawn the upstream serverurl(remote only): Full URL of the remote MCP servertransport(optional, remote only): Override transport detection ("streamable_http"or"websocket"). Usually auto-detected from URL protocol.enabled: Set to false to skip connecting to this server
Docker
Run MCP Gateway in Docker with HTTP transport:
# Build the image
docker build -t mcp-gateway .
# Run with config mounted
docker run -p 3000:3000 \
-v ./examples/config.json:/home/gateway/.config/mcp-gateway/config.json:ro \
mcp-gateway
Endpoints:
| Endpoint | Description |
|---|---|
GET / |
Gateway info and endpoints |
GET /health |
Health check |
/mcp |
MCP protocol endpoint |
Example:
curl http://localhost:3000/
# {"name":"MCP Gateway",...,"endpoints":{"mcp":"/mcp","health":"/health"}}
curl http://localhost:3000/health
# {"status":"ok"}
Remote Server Configuration
Remote servers are auto-detected based on the URL protocol:
http://orhttps://→ Streamable HTTP (recommended)ws://orwss://→ WebSocket
{
"gh-grep": {
"type": "remote",
"url": "https://mcp.grep.app"
},
"custom-websocket": {
"type": "remote",
"url": "wss://my-server.com/mcp"
}
}
Available Tools
gateway.search
Search for tools across all connected servers.
{
query: "kubernetes pods",
limit: 10, // optional, max 50
filters: {
server: "kubernetes", // optional, filter by server name
}
}
Returns matching tools with relevance scores. Tools matching in name are boosted.
gateway.describe
Get detailed information about a specific tool.
{
id: "kubernetes::pods_list" // format: serverKey::toolName
}
Returns the full tool schema including inputSchema.
gateway.invoke
Execute a tool synchronously and get immediate results.
{
id: "kubernetes::pods_list",
args: { namespace: "default" },
timeoutMs: 30000 // optional, default 30 seconds
}
gateway.invoke_async
Start an asynchronous tool execution. Returns a job ID for polling.
{
id: "some-server::long-running-tool",
args: { ... },
priority: 10, // optional, higher values run first
timeoutMs: 60000
}
gateway.invoke_status
Check the status of an async job.
{
jobId: "job_123456789_abc123"
}
Tool ID Format
All gateway tools use the format serverKey::toolName to identify tools:
kubernetes::pods_list
playwright::browser_navigate
github::create_issue
The serverKey is the key name in your configuration file.
Architecture
Components
- MCPGateway class: Main orchestrator
- Upstream connection manager: Manages connections to MCP servers (stdio for local, HTTP/WebSocket for remote)
- Tool catalog: In-memory index of all available tools with metadata
- Job queue: Handles async tool invocations with priority ordering and concurrency limits (max 3 concurrent by default)
- Search engine: MiniSearch with BM25 scoring and fuzzy matching
Search Algorithm
The search uses MiniSearch with BM25 ranking:
- BM25 scoring: Relevance algorithm
- Field boosting: Name matches (3x), title matches (2x), description/server matches (1x)
- Fuzzy matching: Handles typos with 0.2 threshold (e.g., "kubenetes" → finds "kubernetes")
- Prefix search: Partial word matching (e.g., "pod" matches "pods_list")
Contributing
git clone https://github.com/eznix86/mcp-gateway.git
cd mcp-gateway
bun install
# Run locally (stdio transport)
bun run index.ts
# Run with Docker (HTTP transport on port 3000)
bun run docker:build && bun run docker:run
License
MIT License. See the LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。