.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

…/samanhappy/mcphub
home/mcp-servers/samanhappy/mcphub
samanhappy avatar

mcphub

bysamanhappy· 1 MCP server

Installs

2.7k

Stars

2.3k

Forks

272

Category

Agent Meta & Communication

View on GitHub

TL;DR

English | Français | 中文版

How to install mcphub?

samanhappy/mcphub
$git clone https://github.com/samanhappy/mcphub

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1# MCPHub: The Unified Hub for Model Context Protocol (MCP) Servers
2 
3English | [Français](README.fr.md) | [中文版](README.zh.md)
4 
5MCPHub 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.
6 
7![Dashboard Preview](assets/dashboard.png)
8 
9## 🌐 Live Demo & Docs
10 
11- **Documentation**: [docs.mcphub.app](https://docs.mcphub.app/)
12- **Demo Environment**: [demo.mcphub.app](https://demo.mcphub.app/)
13 
14## 🚀 Features
15 
16- **Centralized Management** - Monitor and control all MCP servers from a unified dashboard
17- **Flexible Routing** - Access all servers, specific groups, or individual servers via HTTP/SSE
18- **Granular Group Visibility** - Control Tool, Prompt, and Resource visibility independently for each server inside a group
19- **Smart Routing** - AI-powered tool discovery using vector semantic search ([Learn more](https://docs.mcphub.app/features/smart-routing))
20- **MCP Apps Proxy** - Transparently forward interactive MCP Apps on single-server routes ([Learn more](https://docs.mcphub.app/features/mcp-apps))
21- **Tool Result Compression** - Transparently reduce large text tool outputs before they reach clients
22- **Hot-Swappable Config** - Add, remove, or update servers without downtime
23- **OAuth 2.0 Support** - Both client and server modes for secure authentication ([Learn more](https://docs.mcphub.app/features/oauth))
24- **Social Login** - Seamless GitHub and Google login support with Better Auth integration (requires Database Mode)
25- **Database Mode** - Store configuration in PostgreSQL for production environments ([Learn more](https://docs.mcphub.app/configuration/database-configuration))
26- **Docker-Ready** - Deploy instantly with containerized setup
27 
28## 🔧 Quick Start
29 
30### Configuration
31 
32Create a `mcp_settings.json` file:
33 
34```json
35{
36 "mcpServers": {
37 "time": {
38 "command": "npx",
39 "args": ["-y", "time-mcp"]
40 },
41 "fetch": {
42 "command": "uvx",
43 "args": ["mcp-server-fetch"]
44 }
45 }
46}
47```
48 
49📖 See [Configuration Guide](https://docs.mcphub.app/configuration/mcp-settings) for full options including OAuth, environment variables, and more.
50 
51### Docker Deployment
52 
53```bash
54# Run with custom config (recommended)
55docker run -p 3000:3000 -v ./mcp_settings.json:/app/mcp_settings.json -v ./data:/app/data samanhappy/mcphub
56 
57# Or run with default settings (also mount ./data so credentials and state survive restarts)
58docker run -p 3000:3000 -v ./data:/app/data samanhappy/mcphub
59```
60 
61Two image variants are published under `samanhappy/mcphub`:
62 
63- **`latest`** — the default image. Includes Node.js/pnpm, Python, uv/uvx, Git, and build tools. Covers most MCP servers.
64- **`latest-full`** — the extended image. Adds Rust toolchain (Cargo/rustc), Docker Engine, and Playwright browsers (Chrome + Firefox, amd64 only). Use this for Rust-based servers or container-in-container workflows. Larger download.
65 
66See [Docker Setup](https://docs.mcphub.app/configuration/docker-setup) for build options and Docker-in-Docker configuration.
67 
68### Access Dashboard
69 
70Open `http://localhost:3000` and log in with username `admin`. On first launch, if no `ADMIN_PASSWORD` environment variable is set, a random password is generated and printed to the server logs. You can also pre-set the password:
71 
72```bash
73# Docker: set admin password via environment variable
74docker run -p 3000:3000 -e ADMIN_PASSWORD=your-secure-password samanhappy/mcphub
75```
76 
77> **Tip:** Change the admin password after first login for security.
78 
79> **Headless mode:** Set `DISABLE_WEB=true` to skip serving the bundled dashboard UI and run MCPHub with only the backend/API and MCP endpoints. This is useful when you want to manage servers directly from `mcp_settings.json`.
80 
81### Connect AI Clients
82 
83Connect AI clients (Claude Desktop, Cursor, etc.) via:
84 
85```
86http://localhost:3000/mcp # All servers
87http://localhost:3000/mcp/{g

Preview

samanhappy/mcphubsamanhappy/mcphub

# MCPHub: The Unified Hub for Model Context Protocol (MCP) Servers

English | [Français](README.fr.md) | [中文版](README.zh.md)

MCPHub makes it easy to manage and scale multiple MCP (Model Context Protocol) servers by organizing them into flexible Streamable HTTP (SSE) endpoints—supporti

![Dashboard Preview](assets/dashboard.png)

Reposamanhappy/mcphub
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPmcpmcp-gateway

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  3. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  4. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  5. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270
  6. alioshr avatarmemory-bank-mcpMCP server for remote management of project memory banksMCP ServersAug 20251.7k916