A cross-platform desktop application for centralized management of Model Context Protocol (MCP) servers. Configure MCP servers once and deploy configurations to multiple AI client applications.
- Central Server Registry: Manage all your MCP server configurations in one place
- Multi-Client Support: Deploy to 40+ AI client applications simultaneously
- Client Instances: Create multiple profiles for each client (e.g., "Work" and "Personal")
- Server Instances: Create multiple instances of the same server with different configurations
- Server-to-Instance Mapping: Selectively enable servers for each client instance
- Configuration Sync: One-click sync to update client configuration files
- Automatic Backups: Creates backups before modifying any config files
- Import from File: Import existing MCP configurations from any client's config file
- Server Registries: Browse and install from multiple server registries:
- MCP Hub Built-in (55+ curated servers)
- Anthropic Official (19 servers)
- Awesome MCP Servers (100+ community servers)
- Smithery Registry (200+ servers)
- Glama MCP Directory (150+ servers)
- mcp-get Registry (80+ servers)
- Custom Registries: Add your own registries from local files or remote URLs (including private GitHub repos)
- Environment Variables: Configure server-specific environment variables
- Tags: Organize servers with custom tags for easy filtering
- Secure Credential Storage: Uses OS-native secure storage (macOS Keychain, Windows Credential Manager, Linux Secret Service)
- Config File Preservation: Safely merges MCP configs with existing settings (e.g., Claude Code's
.claude.json)
- MCP Directory: Expose servers via
~/.mcp/directory for compatible clients - HTTP Discovery Server: Local HTTP server for programmatic server discovery
MCP Hub supports 40+ AI clients across all major platforms:
| Client | macOS | Windows | Linux |
|---|---|---|---|
| Claude Desktop | ✓ | ✓ | ✓ |
| Claude Code | ✓ | ✓ | ✓ |
| Perplexity Desktop | ✓ | ✓ | ✓ |
| BoltAI | ✓ | - | - |
| Client | macOS | Windows | Linux |
|---|---|---|---|
| VS Code | ✓ | ✓ | ✓ |
| VS Code Insiders | ✓ | ✓ | ✓ |
| Cursor | ✓ | ✓ | ✓ |
| Windsurf | ✓ | ✓ | ✓ |
| Zed | ✓ | ✓ | ✓ |
| Visual Studio 2022 | - | ✓ | - |
| JetBrains IDEs | ✓ | ✓ | ✓ |
| Client | macOS | Windows | Linux |
|---|---|---|---|
| Cline | ✓ | ✓ | ✓ |
| Continue | ✓ | ✓ | ✓ |
| Sourcegraph Cody | ✓ | ✓ | ✓ |
| Roo Code | ✓ | ✓ | ✓ |
| Kilo Code | ✓ | ✓ | ✓ |
| Augment Code | ✓ | ✓ | ✓ |
| Qodo Gen | ✓ | ✓ | ✓ |
| GitHub Copilot | ✓ | ✓ | ✓ |
| Client | macOS | Windows | Linux |
|---|---|---|---|
| Amp | ✓ | ✓ | ✓ |
| Gemini CLI | ✓ | ✓ | ✓ |
| Amazon Q Developer | ✓ | ✓ | ✓ |
| Rovo Dev CLI | ✓ | ✓ | ✓ |
| OpenAI Codex | ✓ | ✓ | ✓ |
| Copilot CLI | ✓ | ✓ | ✓ |
| Client | macOS | Windows | Linux |
|---|---|---|---|
| LM Studio | ✓ | ✓ | ✓ |
| Google Antigravity | ✓ | ✓ | ✓ |
| Kiro | ✓ | ✓ | ✓ |
| Smithery | ✓ | ✓ | ✓ |
| Custom | ✓ | ✓ | ✓ |
And many more...
Download the latest release for your platform:
- macOS:
MCP Hub_x.x.x_aarch64.dmg(Apple Silicon) orMCP Hub_x.x.x_x64.dmg(Intel) - Windows:
MCP Hub_x.x.x_x64-setup.exe - Linux:
MCP Hub_x.x.x_amd64.AppImageor.deb
# Clone the repository
git clone https://github.com/yourusername/mcp-hub.git
cd mcp-hub
# Install dependencies
pnpm install
# Run in development mode
pnpm tauri dev
# Build for production
pnpm tauri build- Navigate to the Servers view
- Click Add Server or Import to add from registries/files
- Fill in the server details:
- Name: Human-readable name
- Command: The executable (e.g.,
npx,uvx,node,python) - Arguments: Command arguments (one per line)
- Environment Variables: KEY=value pairs (one per line)
- Tags: Comma-separated tags for organization
- Click Add Server
To run multiple instances of the same server with different configurations:
- Find the server in the Servers view
- Click the Copy icon to create an instance
- Modify the name, arguments, or environment variables as needed
- Click Add Server to create the instance
Instances are visually grouped with their parent server and display an "instance" badge.
- Click Import in the Servers view
- Select a registry from the available sources
- Browse or search for servers
- Select servers to import
- Click Import Selected
You can create your own server registries to share MCP configurations within your team or organization.
- Click Import in the Servers view
- Click the + button next to the registry dropdown
- Enter the registry URL (local file path or remote URL)
- For private GitHub repos, add your GitHub token
- Click Test Connection to validate
- Click Add Registry
Create a JSON file with the following structure:
{
"name": "My Team Registry",
"description": "Internal MCP servers for our team",
"icon": "star",
"servers": [
{
"name": "internal-db-server",
"description": "Connect to our internal databases",
"command": "npx",
"args": ["-y", "@myorg/db-mcp-server"],
"env": {
"DB_HOST": "internal.example.com"
},
"tags": ["database", "internal"],
"repository": "https://github.com/myorg/db-mcp-server"
},
{
"name": "slack-integration",
"description": "Post messages to team Slack channels",
"command": "uvx",
"args": ["slack-mcp"],
"env": {},
"tags": ["messaging", "slack"],
"homepage": "https://example.com/docs/slack-mcp"
}
]
}| Field | Required | Description |
|---|---|---|
name |
Yes | Display name for the registry |
description |
No | Brief description of the registry |
icon |
No | Icon identifier (e.g., "star", "package", "shield-check") |
servers |
Yes | Array of server definitions |
| Field | Required | Description |
|---|---|---|
name |
Yes | Unique server name |
description |
No | What the server does |
command |
Yes | Executable command (e.g., "npx", "uvx", "node") |
args |
Yes | Array of command arguments |
env |
No | Environment variables (object) |
tags |
No | Array of tags for categorization |
repository |
No | Source code repository URL |
homepage |
No | Documentation or homepage URL |
- Local file: Use a file path like
/path/to/registry.json - Public URL: Host on any web server or public GitHub raw URL
- Private GitHub: Use raw GitHub URL with a personal access token for authentication
- Navigate to the Instances view
- Click Add Instance
- Select the client type or use auto-detection
- Configure the instance name and config path
- Click Configure Servers to select which servers to enable
- Click Sync to write the configuration
- Click Sync on any instance to update its config file
- Use Sync All in the sidebar to sync all instances at once
- Backups are automatically created before each sync
Application data is stored in:
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/MCP Hub/ |
| Windows | %APPDATA%\MCP Hub\ |
| Linux | ~/.config/mcp-hub/ |
MCP Hub uses SQLite to store:
- Server configurations
- Client instances
- Server-to-instance mappings
- Backup records
- Application settings
mcp-hub/
├── src/ # React frontend
│ ├── components/ # UI components
│ ├── pages/ # Page components
│ │ ├── Dashboard.tsx # Overview dashboard
│ │ ├── Servers.tsx # Server management
│ │ ├── Instances.tsx # Client instance management
│ │ └── Settings.tsx # Application settings
│ ├── store/ # Zustand state management
│ └── types/ # TypeScript types
├── src-tauri/ # Rust backend
│ └── src/
│ ├── commands/ # Tauri command handlers
│ ├── db/ # SQLite database
│ ├── models/ # Data models
│ └── services/
│ ├── config.rs # Config file management
│ ├── credentials.rs # Secure credential storage
│ ├── discovery.rs # MCP discovery features
│ └── registry.rs # Server registry integration
└── ...
- Frontend: React 19, TypeScript, Tailwind CSS v4, Radix UI
- Backend: Rust, Tauri 2.0
- Database: SQLite (via rusqlite)
- State Management: Zustand
- Secure Storage: OS keyring (via keyring crate)
# Development
pnpm tauri dev
# Build
pnpm tauri build
# Type checking
pnpm build # Frontend only
cargo check # Backend onlyComing soon
MIT License - see LICENSE file for details.
Contributions are welcome! Please read the contributing guidelines before submitting a PR.
- Model Context Protocol by Anthropic
- Tauri for the desktop framework
- All the MCP server authors whose work is cataloged in the registries