mcp-gateway
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., "@mcp-gatewaycheck my portfolio on Notion"
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
MCP (Model Context Protocol) server that exposes local agents as tools for Claude Code.
Tools (19)
Domain | Tools | Backend Agent |
Quant |
| invest-quant |
Trading |
| auto-trader |
News |
| anti-echo-chamber |
Reports |
| report-builder |
Robotics |
| robot-modeler |
Notion |
| notion-portfolio |
FreeCAD |
| freecad-automation |
Related MCP server: openai-agents-mcp
Architecture
Claude Code ←─ stdio ─→ mcp-gateway (server.js)
├─ tools/invest-quant.js → REST :3003
├─ tools/auto-trader.js → REST :3001
├─ tools/anti-echo-chamber.js → local
├─ tools/report-builder.js → local
├─ tools/robot-modeler.js → local
├─ tools/notion-portfolio.js → Notion API
└─ tools/freecad-automation.js → FreeCADCmd + freecad-automationStack
Runtime: Node.js
Protocol: MCP SDK (stdio transport)
Validation: Zod schema for all tool inputs
Setup
cp .env.example .env
npm install
npm start # Start MCP server (stdio)Optional environment for FreeCAD:
export FREECAD_AUTOMATION_ROOT="/Users/jangtaeho/Documents/New/freecad-automation"
export FREECAD_OUTPUT_DIR="/Users/jangtaeho/Documents/New/freecad-automation/output"
export FREECAD_CMD="/Applications/FreeCAD.app/Contents/Resources/bin/FreeCADCmd"Add to Claude Code config:
{
"mcpServers": {
"mcp-gateway": {
"command": "node",
"args": ["/path/to/mcp-gateway/server.js"]
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- AlicenseAqualityCmaintenanceLocal MCP server that wraps the headless Claude Code CLI as MCP tools, providing stateless access to Claude's coding capabilities through prompt-based interactions. It enables users to execute Claude Code commands with various prompt formats and structured outputs directly from MCP clients.3MIT
- AlicenseAqualityDmaintenanceMCP server that bridges OpenAI's Agents SDK with Claude Code, enabling web search, file search, and computer use capabilities directly in your development environment.29 npm1MIT
- AlicenseAqualityDmaintenanceThis MCP server enables remote control and management of Claude Code agents, allowing you to execute missions, configure agent personalities, and integrate with other MCP tools.720 npm1MIT
- AlicenseAqualityCmaintenanceMCP server that exposes local Python scripts as tools for AI clients (e.g. Claude Desktop), enabling directory tree generation, Excel-to-text conversion, Python code extraction, and text file merging.51MIT