MCPHubz MCP Server — install once, search 2,000+ servers

Use MCPHubz inside
any AI agent or editor

One config. Search 2,000+ quality-scored MCP servers, get instant install commands, and discover the right tools — without leaving your AI client.

1

Pick your client

config: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcphubz": {
      "command": "npx",
      "args": ["-y", "mcphubz"]
    }
  }
}

Requires Claude Desktop v0.10+. Restart Claude after saving.

2

Restart and verify

After restarting, mcphubz should appear in your MCP tools list with 5 tools available.

✓ mcphubz connected — 5 tools available
3

Start asking in plain English

Search MCPHubz for the best web scraping MCP server
Find a Postgres MCP server and give me the Claude Desktop config
What are the top 5 MCP servers for automation?
Show me featured MCP servers from MCPHubz
Get full details on the Firecrawl MCP server
List all MCP server categories and their counts

Available Tools

search_servers
Find servers by keyword, description, or category
get_server
Full details + auto-generated install config
list_categories
Browse all categories with live server counts
get_featured
Staff picks — community-validated, production-ready
get_top_servers
Highest-scored servers, optionally filtered by category

Works with any agent framework

The endpoint speaks standard MCP JSON-RPC 2.0 over HTTP. LangChain, CrewAI, AutoGPT, n8n, custom agents — anything that can make a POST request works.

curl / any HTTP client
curl -X POST https://mcphubz.com/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_servers","arguments":{"query":"web scraping"}}}'
python (requests)
import requests

res = requests.post("https://mcphubz.com/api/mcp", json={
    "jsonrpc": "2.0", "id": 1,
    "method": "tools/call",
    "params": {"name": "search_servers", "arguments": {"query": "web scraping"}}
})
print(res.json()["result"]["content"][0]["text"])
View live API endpoint
Browse the DirectoryAPI Docs