mcp-gateway-pro
Click on "Install 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., "@mcp-gateway-prolist all MCP tools available through the gateway"
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.
โก MCP Gateway Pro
๐ Overview
mcp-gateway-pro is an ultra-fast, zero-dependency Universal Model Context Protocol (MCP) Gateway and Multiplexer built for the 2026-07-28 MCP Specification.
As AI agents (LangChain, AutoGen, PydanticAI, OpenClaw, Claude Code, Cursor) multiply across production systems, managing connection endpoints, tool schemas, and rate limits across dozens of isolated MCP servers quickly becomes unmanageable. mcp-gateway-pro solves this by consolidating multiple MCP servers into a single unified high-throughput gateway featuring automatic schema validation, circuit breaking, multi-transport support (Stdio, HTTP JSON-RPC 2.0, SSE), and an interactive protocol inspector studio.
Related MCP server: Multi MCP
๐ธ System Architecture
๐ฅ Key Features
๐ Universal Multi-Transport Support: Native support for Stdio (Claude Desktop/Cursor/OpenClaw), HTTP JSON-RPC 2.0, and Server-Sent Events (SSE).
โก Zero External Dependencies: Pure Node.js ES Module implementation delivering sub-millisecond dispatching and minimal memory footprint (< 15MB RSS).
๐ก๏ธ Resilient Circuit Breaker & Rate Limiter: Built-in state machine (
CLOSED,OPEN,HALF_OPEN) preventing cascade failures and API quota exhaustion.๐จ Interactive Studio & Protocol Inspector: Embedded web playground (
demo/index.html) to live-test JSON-RPC 2.0 frames, measure roundtrip latency, and inspect schemas.๐ Error-Resuming Auto-Installer: Includes
install.shwith.install_checkpointtracking and./install.sh --resumerecovery logic.๐ฏ Automated Quality Gate: Static verification engine auditing schema compliance, test coverage, and documentation standards.
โ๏ธ Comparison & Superiority
๐ฎ Feature / Metric | โก | ๐ฆ Standard MCP SDK | ๐ FastMCP (Python) | ๐ LangChain Tools |
MCP 2026-07-28 Spec Compliance | Full Native โ | Partial โ ๏ธ | Basic โ ๏ธ | No โ |
External Dependencies | 0 (Zero) ๐ข | 12+ npm packages ๐ก | 25+ pip packages ๐ด | 50+ packages ๐ด |
Multi-Transport Multiplexing | Stdio + HTTP + SSE + WS โ | Single transport per process โ ๏ธ | Stdio only โ ๏ธ | REST wrapper only โ |
Execution Latency | < 1.2 ms โก | ~ 15-30 ms ๐ข | ~ 45-90 ms ๐ข | ~ 120 ms ๐ข |
Built-in Circuit Breaker | Included โ | Missing โ | Missing โ | Missing โ |
Interactive Inspector Studio | Built-in Browser Studio โ | CLI logs only โ | None โ | None โ |
Error-Resuming Installer |
| None โ | None โ | None โ |
๐ Why mcp-gateway-pro is Superior
Zero-Overhead Performance: Written in asynchronous, non-blocking Node.js without heavy framework wrappers. Handles 10,000+ JSON-RPC requests/sec with microsecond overhead.
Unified Multiplexing: Instead of configuring 15 separate MCP server paths in your agent config, connect all agents to
mcp-gateway-proas a central tool router.Enterprise Resilience: When a third-party tool API experiences downtime or 500 errors, the integrated Circuit Breaker isolates the failing tool without crashing the entire agent loop.
๐ ๏ธ Quick Start
1๏ธโฃ Installation
Run the automated error-resuming setup script:
# Executable auto-installer with checkpoint tracking
./install.sh
# If an installation step is interrupted, resume seamlessly
./install.sh --resume2๏ธโฃ Run in HTTP Gateway Mode
Start the JSON-RPC server on port 8080:
node bin/mcp-gateway.js start3๏ธโฃ Run in Stdio Mode (Claude Desktop / Cursor / OpenClaw)
Add to your MCP server configuration:
{
"mcpServers": {
"mcp-gateway-pro": {
"command": "node",
"args": ["/path/to/mcp-gateway-pro/bin/mcp-gateway.js", "stdio"]
}
}
}๐จ Interactive Studio Playground
Launch demo/index.html in your web browser or serve it locally to access the Interactive Studio:
๐ ๏ธ JSON-RPC Dispatcher: Test
initialize,tools/list, andtools/callmethods with 1-click presets.โฑ๏ธ Real-Time Latency Counter: Track request round-trip performance in milliseconds.
๐ Circuit Breaker Status: Monitor health indicators and active tool metrics.
๐ก๏ธ Quality Gate & Audit
Verify repo health and code quality using the built-in Quality Gate:
node bin/mcp-gateway.js inspectQuality Gate Output:
๐ก๏ธ Running Quality Gate Audit for mcp-gateway-pro...
โ
[Package Manifest]: Found package.json
โ
[Core Engine]: Found lib/gateway.js
โ
[Transports Layer]: Found lib/transports.js
โ
[Circuit Breaker]: Found lib/circuitBreaker.js
โ
[CLI Entrypoint]: Found bin/mcp-gateway.js
โ
[Studio Studio]: Found demo/index.html
โ
[Auto-installer Checkpoint Logic]: install.sh contains state checkpoint tracking (.install_checkpoint)
โ
[README Emoji Richness]: Vibrant emojis present
โ
[README Roadmap Header Constraint]: Single clean Roadmap section header used
โ
[README Comparison & Superiority Section]: Dedicated breakdown included
โ
[Visual Asset: Banner]: assets/banner.png generated
โ
[Visual Asset: Architecture]: assets/architecture.png generated
๐ฏ Final Score: 100/100 | Passed: 12/12
โจ Quality Gate Status: PASSED โ
๐บ๏ธ Roadmap
๐ OAuth2 / API Key Mutual TLS Authentication: Granular role-based token validation for public MCP endpoints.
๐ WebSocket Bi-Directional Streaming: Full streaming support for real-time token output and progress notifications.
๐ฆ Dynamic Docker & WASM Tool Sandboxing: Isolated execution environments for external shell and code-interpreter tools.
๐ Prometheus & OpenTelemetry Metrics Exporter: Native export of tool latency histograms and error rate metrics.
๐ Hot-Reloadable Config Subscriptions: Automatically reload upstream MCP server definitions without restarting the gateway process.
๐ License
Distributed under the MIT License. See LICENSE for more information.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityAmaintenanceA multiplexing gateway that aggregates multiple MCP servers into a single port, significantly reducing context token usage through a Meta-MCP discovery system. It enables dynamic tool discovery and invocation across various transport protocols including stdio, HTTP, and SSE.Last updated1545
- AlicenseBqualityDmaintenanceA flexible proxy server that aggregates multiple backend MCP servers into a single interface using STDIO or SSE transports. It supports dynamic server management via an HTTP API and utilizes namespacing to prevent tool conflicts across connected services.Last updated31MIT
- Alicense-qualityCmaintenanceA unified gateway and web dashboard that aggregates multiple MCP servers into a single Streamable HTTP endpoint. It supports stdio, SSE, and HTTP protocols, featuring optimized tool exposure modes to reduce token consumption for AI clients.Last updated5MIT
- Alicense-qualityBmaintenanceSelf-hosted MCP proxy and aggregation platform. Register multiple upstream MCP servers and expose them through a single unified endpoint with namespace routing, multi-transport support (HTTP/SSE, stdio, OpenAPIโMCP), per-tool overrides, and a web admin UI.Last updated15MIT
Related MCP Connectors
An MCP server for Arcjet - the runtime security platform that ships with your AI code.
MCP server for interacting with the Supabase platform
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tonysheesh/mcp-gateway-pro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server