.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ravitemer/mcp-hub
home/mcp-servers/ravitemer/mcp-hub
ravitemer avatar

mcp-hub

byravitemer· 1 MCP server

Installs

3.1k

Stars

505

Forks

63

Category

AI Agents & MCP

View on GitHub

TL;DR

MCP Hub acts as a central coordinator for MCP servers and clients, providing two key interfaces:

How to install mcp-hub?

ravitemer/mcp-hub
$git clone https://github.com/ravitemer/mcp-hub

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-hub by running `git clone https://github.com/ravitemer/mcp-hub`, then use it for the current task and follow its documentation at https://github.com/ravitemer/mcp-hub.

Files · 1

View on GitHub
README.md
1# MCP Hub
2 
3[![npm version](https://badge.fury.io/js/mcp-hub.svg)](https://www.npmjs.com/package/mcp-hub)
4[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)
6 
7MCP Hub acts as a central coordinator for MCP servers and clients, providing two key interfaces:
8 
91. **Management Interface** (/api/*): Manage multiple MCP servers through a unified REST API and web UI
102. **MCP Server Interface** (/mcp): Connect ANY MCP client to access ALL server capabilities through a single endpoint
11 
12This dual-interface approach means you can manage servers through the Hub's UI while MCP clients (Claude Desktop, Cline, etc.) only need to connect to one endpoint (`localhost:37373/mcp`) to access all capabilities. Implements [MCP 2025-03-26](https://modelcontextprotocol.io/specification/2025-03-26) specification.
13 
14## Feature Support
15 
16| Category | Feature | Support | Notes |
17|----------|---------|---------|-------|
18| **Transport** ||||
19| | streamable-http | ✅ | Primary transport protocol for remote servers |
20| | SSE | ✅ | Fallback transport for remote servers |
21| | STDIO | ✅ | For running local servers |
22| **Authentication** ||||
23| | OAuth 2.0 | ✅ | With PKCE flow |
24| | Headers | ✅ | For API keys/tokens |
25| **Capabilities** ||||
26| | Tools | ✅ | List tools |
27| | 🔔 Tool List Changed | ✅ | Real-time updates |
28| | Resources | ✅ | Full support |
29| | 🔔 Resource List Changed | ✅ | Real-time updates |
30| | Resource Templates | ✅ | URI templates |
31| | Prompts | ✅ | Full support |
32| | 🔔 Prompts List Changed | ✅ | Real-time updates |
33| | Roots | ❌ | Not supported |
34| | Sampling | ❌ | Not supported |
35| | Completion | ❌ | Not supported |
36| **Marketplace** ||||
37| | Server Discovery | ✅ | Browse available servers |
38| | Installation | ✅ | Auto configuration |
39| **Real-time** ||||
40| | Status Updates | ✅ | Server & connection state |
41| | Capability Updates | ✅ | Automatic refresh |
42| | Event Streaming to clients | ✅ | SSE-based |
43| | Auto Reconnection | ✅ | With backoff |
44| **Development** ||||
45| | Hot Reload | ✅ | Auto restart a MCP server on file changes with `dev` mode |
46| **Configuration** ||||
47| | `${}` Syntax | ✅ | Environment variables and command execution across all fields |
48| | VS Code Compatibility | ✅ | Support for `servers` key, `${env:}`, `${input:}`, predefined variables |
49| | JSON5 Support | ✅ | Comments and trailing commas in configuration files |
50 
51## Simplified Client Configuration
52 
53Configure all MCP clients with just one endpoint:
54```json
55{
56 "mcpServers" : {
57 "Hub": {
58 "url" : "http://localhost:37373/mcp"
59 }
60 }
61}
62```
63 
64The Hub automatically:
65- Namespaces capabilities to prevent conflicts (e.g., `filesystem__search` vs `database__search`)
66- Routes requests to the appropriate server
67- Updates capabilities in real-time when servers are added/removed
68- Handles authentication and connection management
69 
70## Key Features
71 
72- **Unified MCP Server Endpoint** (/mcp):
73 - Single endpoint for ALL MCP clients to connect to
74 - Access capabilities from all managed servers through one connection
75 - Automatic namespacing prevents conflicts between servers
76 - Real-time capability updates when servers change
77 - Simplified client configuration - just one endpoint instead of many
78 
79- **Dynamic Server Management**:
80 - Start, stop, enable/disable servers on demand
81 - Real-time configuration updates with automatic server reconnection
82 - Support for local (STDIO) and remote (streamable-http/SSE) MCP servers
83 - Health monitoring and automatic recovery
84 - OAuth authentication with PKCE flow
85 - Header-based token authentication
86 
87- **Unified REST API**:
88 - Execute tools from any connected server
89 - Access resources and resource templates
90 - Real-time status updates via Server-Sent Events (SSE)
91 - Full CRUD operations for server management
92 
93- **Real-time Events & Monitoring**:
94 - Live serv

Preview

ravitemer/mcp-hubravitemer/mcp-hub

# MCP Hub

[![npm version](https://badge.fury.io/js/mcp-hub.svg)](https://www.npmjs.com/package/mcp-hub)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)

Reporavitemer/mcp-hub
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedOct 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPaichatgpt

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k