MCP Servers Hub ⭐
Overview
MCP Servers Hub is a centralized repository for discovering, comparing, and implementing Model Context Protocol (MCP) servers, ranked by community popularity based on GitHub stars.
Users can navigate through the repository to find the most popular MCP servers, categorized by their functionalities, and follow implementation guides provided for each server.
- Collection of MCP servers organized by community popularity. - Implementation guides for each server. - Multilingual support for documentation. - Community resources for further assistance.
- Discovering the best MCP servers for specific tasks.
- Comparing different implementations based on community feedback.
- Accessing guides to implement MCP servers in projects.
Add to your AI client
Use these steps to connect MCP Servers Hub ⭐ in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-servers-hub-hanzlahabib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-servers-hub-hanzlahabib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-hub-hanzlahabib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-hub-hanzlahabib": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-hub-hanzlahabib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-hub-hanzlahabib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-hub-hanzlahabib"
]
}
}
}FAQ
What is Model Context Protocol (MCP)?
MCP enables AI models to securely access external resources through standardized interfaces.
How are the servers ranked?
Servers are ranked based on the number of GitHub stars they have received, indicating community popularity.
Is there support for multiple languages?
Yes, the documentation is available in English, Chinese, and Japanese.