Install
$ agentstack add mcp-jsjfai-agentdns-node ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AgentDNS·Node: The Unified Hub for Model Context Protocol (MCP) Servers
English | [中文版](README.zh.md)
AgentDNS·Node makes it easy to manage and scale multiple MCP (Model Context Protocol) servers by organizing them into flexible Streamable HTTP (SSE) endpoints—supporting access to all servers, individual servers, or logical server groups.
🚀 Features
- Broadened MCP Server Support: Seamlessly integrate any MCP server with minimal configuration.
- Centralized Dashboard: Monitor real-time status and performance metrics from one sleek web UI.
- Flexible Protocol Handling: Full compatibility with both stdio and SSE MCP protocols.
- Hot-Swappable Configuration: Add, remove, or update MCP servers on the fly — no downtime required.
- Group-Based Access Control: Organize servers into customizable groups for streamlined permissions management.
- Secure Authentication: Built-in user management with role-based access powered by JWT and bcrypt.
- Docker-Ready: Deploy instantly with our containerized setup.
🔧 Quick Start
Configuration
Create a mcp_settings.json file to customize your server settings:
{
"mcpServers": {
"amap": {
"command": "npx",
"args": ["-y", "@amap/amap-maps-mcp-server"],
"env": {
"AMAP_MAPS_API_KEY": "your-api-key"
}
},
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest", "--headless"]
},
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "your-bot-token",
"SLACK_TEAM_ID": "your-team-id"
}
}
}
}
Docker Deployment
Recommended: Mount your custom config:
docker run -p 3000:3000 -v ./mcp_settings.json:/app/mcp_settings.json -v ./data:/app/data samanhappy/mcphub
or run with default settings:
docker run -p 3000:3000 samanhappy/mcphub
Access the Dashboard
Open http://localhost:3000 and log in with your credentials.
> Note: Default credentials are admin / admin123.
Dashboard Overview:
- Live status of all MCP servers
- Enable/disable or reconfigure servers
- Group management for organizing servers
- User administration for access control
Streamable HTTP Endpoint
> As of now, support for streaming HTTP endpoints varies across different AI clients. If you encounter issues, you can use the SSE endpoint or wait for future updates.
Connect AI clients (e.g., Claude Desktop, Cursor, DeepChat, etc.) via:
http://localhost:3000/mcp
This endpoint provides a unified streamable HTTP interface for all your MCP servers. It allows you to:
- Send requests to any configured MCP server
- Receive responses in real-time
- Easily integrate with various AI clients and tools
- Use the same endpoint for all servers, simplifying your integration process
Smart Routing (Experimental):
Smart Routing is AgentDNS·Node's intelligent tool discovery system that uses vector semantic search to automatically find the most relevant tools for any given task.
http://localhost:3000/mcp/$smart
How it Works:
- Tool Indexing: All MCP tools are automatically converted to vector embeddings and stored in PostgreSQL with pgvector
- Semantic Search: User queries are converted to vectors and matched against tool embeddings using cosine similarity
- Intelligent Filtering: Dynamic thresholds ensure relevant results without noise
- Precise Execution: Found tools can be directly executed with proper parameter validation
Setup Requirements:
To enable Smart Routing, you need:
- PostgreSQL with pgvector extension
- OpenAI API key (or compatible embedding service)
- Enable Smart Routing in AgentDNS·Node settings
Group-Specific Endpoints (Recommended):
For targeted access to specific server groups, use the group-based HTTP endpoint:
http://localhost:3000/mcp/{group}
Where {group} is the ID or name of the group you created in the dashboard. This allows you to:
- Connect to a specific subset of MCP servers organized by use case
- Isolate different AI tools to access only relevant servers
- Implement more granular access control for different environments or teams
Server-Specific Endpoints: For direct access to individual servers, use the server-specific HTTP endpoint:
http://localhost:3000/mcp/{server}
Where {server} is the name of the server you want to connect to. This allows you to access a specific MCP server directly.
> Note: If the server name and group name are the same, the group name will take precedence.
SSE Endpoint (Deprecated in Future)
Connect AI clients (e.g., Claude Desktop, Cursor, DeepChat, etc.) via:
http://localhost:3000/sse
For smart routing, use:
http://localhost:3000/sse/$smart
For targeted access to specific server groups, use the group-based SSE endpoint:
http://localhost:3000/sse/{group}
For direct access to individual servers, use the server-specific SSE endpoint:
http://localhost:3000/sse/{server}
🧑💻 Local Development
git clone https://github.com/samanhappy/mcphub.git
cd mcphub
pnpm install
pnpm dev
This starts both frontend and backend in development mode with hot-reloading.
> For windows users, you may need to start the backend server and frontend separately: pnpm backend:dev, pnpm frontend:dev.
🛠️ Common Issues
Using Nginx as a Reverse Proxy
If you are using Nginx to reverse proxy AgentDNS·Node, please make sure to add the following configuration in your Nginx setup:
proxy_buffering off
🔍 Tech Stack
- Backend: Node.js, Express, TypeScript
- Frontend: React, Vite, Tailwind CSS
- Auth: JWT & bcrypt
- Protocol: Model Context Protocol SDK
🙏🏻 Thanks
This project is developed based on the following awesome projects:
📄 License
Licensed under the [Apache 2.0 License](LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jsjfai
- Source: jsjfai/AgentDNS-Node
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.