MCP Hub
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 Hublist all tools available"
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 Hub
MCP Hub is a TypeScript gateway for Model Context Protocol servers. It lets you register multiple downstream MCP servers and expose one hub surface for tool discovery, routing, smart search, and recommendations.
Status: experimental. The project is suitable for local development and portfolio review, but the public API should be treated as pre-1.0.
What It Does
Aggregates tool metadata across registered MCP servers.
Routes tool calls to the selected downstream server.
Provides hub-native tools for catalog browsing, delegated calls, natural-language search, and recommendations.
Supports stdio and HTTP/SSE downstream server entries.
Keeps downstream credentials outside the repository through environment variables or per-server env files.
Includes unit, integration, e2e, performance, and registry hardening tests.
MCP Hub does not bundle third-party MCP servers. All server examples are placeholders that you replace with your own commands, URLs, and credential storage.
Related MCP server: MCPilot
Requirements
Node.js 18 or newer
npm 10 or newer
One or more MCP servers that you can run locally or reach over HTTP/SSE
Install
git clone https://github.com/ftaricano/mcp-hub.git
cd mcp-hub
npm ci
npm run buildWhen an npm package is published, the intended package name is @ftaricano/mcp-hub.
Quickstart
Create a local hub config:
cp hub-config.example.json hub-config.jsonEdit hub-config.json so each server entry points to a real MCP server in your environment. Keep hub-config.json local; it is ignored by Git because it may contain paths or environment references that are specific to your machine.
Minimal stdio server example:
{
"servers": [
{
"id": "docs-server",
"name": "Documentation MCP Server",
"command": "node",
"args": ["/absolute/path/to/docs-mcp/dist/index.js"],
"envFile": "/absolute/path/to/docs-mcp/.env",
"inheritEnv": ["DOCS_REGION"],
"protocol": "stdio",
"enabled": true,
"timeout": 30000,
"retries": 2,
"toolCallRetries": {
"enabled": true,
"maxAttempts": 2,
"retryableTools": ["search_docs"]
},
"tags": ["docs", "knowledge"]
}
],
"cache": {
"enabled": true,
"ttl": 300000
},
"security": {
"rate_limit": 100,
"validate_schemas": true
},
"logging": {
"level": "info",
"format": "json"
}
}Run the hub:
HUB_CONFIG="$PWD/hub-config.json" npm startMCP Client Config
Register the built hub in any MCP client that supports stdio servers:
{
"mcpServers": {
"hub": {
"command": "node",
"args": ["/absolute/path/to/mcp-hub/dist/index.js"],
"env": {
"HUB_CONFIG": "/absolute/path/to/mcp-hub/hub-config.json"
}
}
}
}See LMStudio-MCP-Config.md for an LM Studio example.
Hub Tools
MCP Hub exposes four hub-native tools:
list-all-tools: returns the aggregated downstream tool catalog.call-tool: calls a named tool on a named downstream server.smart-search: ranks available tools for a natural-language query.get-recommendations: returns recommendation-oriented results based on available tool metadata.
Configuration
HUB_CONFIG can point to any JSON file matching the hub config shape. If it is not set, the hub tries common local paths for hub-config.json.
Server entries can use:
commandandargsfor stdio MCP servers,urlandprotocol: "http"for HTTP/SSE entries,envfor non-secret static values,envFilefor per-server secrets or local credentials,inheritEnvfor explicit parent environment pass-through,toolCallRetriesfor known-idempotent tools only.
Downstream stdio servers inherit only a small runtime-safe environment baseline by default. Add any required parent variables explicitly with inheritEnv.
Architecture
flowchart LR
Client["MCP client"] --> Hub["MCP Hub"]
Hub --> Registry["Server registry"]
Hub --> Search["Smart search and recommendations"]
Registry --> ServerA["Docs MCP server"]
Registry --> ServerB["Issue tracker MCP server"]
Registry --> ServerC["Any other MCP server"]Key modules:
src/index.ts: MCP server entry point and hub-native tool handlers.src/registry/: downstream server lifecycle, connections, and tool discovery.src/intelligence/: search and recommendation scoring.src/cache/: result and metadata caching.src/utils/redaction.ts: argument summarization without logging raw sensitive values.
Development
npm run type-check
npm run lint
npm run format:check
npm test
npm run buildUseful focused suites:
npm run test:unit
npm run test:integration
npm run test:e2e
npm run test:performancePackaging
Validate the npm package contents before publishing:
npm pack --dry-run --jsonThe package is intentionally restricted with the files field in package.json; local configs, logs, tests, coverage, testing-interface/, and generated artifacts should not ship in the npm tarball.
Security
Do not commit secrets or local operational state. In particular, keep these files and directories out of Git:
.env,.env.*except.env.examplehub-config.jsonand machine-specific config variantstokens/,auth-state/,config/auth-state/credentials.json,token.json, private keys, certificates, logs, and JSONL traces
Report vulnerabilities privately through GitHub Security Advisories. See SECURITY.md for the full policy.
Troubleshooting
If the hub starts but downstream tools do not appear:
confirm
HUB_CONFIGpoints to the intended file,verify each downstream server
command,args,url, andprotocol,run the downstream MCP server directly before registering it behind the hub,
check whether the server requires variables in
envFileorinheritEnv,keep mutating tool calls out of retry lists unless they are explicitly idempotent.
If build or tests fail after dependency changes:
run
npm cifrom a clean checkout,run
npm run type-checkbefore debugging runtime behavior,remove stale
dist/output withnpm run clean && npm run build.
Contributing
Issues and focused pull requests are welcome. Before opening a PR, run:
npm run type-check
npm run lint
npm run format:check
npm test
npm run buildPlease avoid committing local credentials, generated logs, screenshots, or machine-specific hub configs.
License
MIT. See LICENSE.
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.
Latest Blog Posts
- 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/ftaricano/mcp-hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server