MCPHub Server Quickstart

Connect to MCPHub's gateway service and access a wide range of MCP servers.

Installation

Install via NPM

Install the MCPHub gateway globally using npm:

npm install -g @mcphub/gateway

Configuration Steps

1. Find Gateway Path

Locate your npm global packages directory:

npm root -g

Common locations:

  • macOS (Homebrew): /opt/homebrew/lib/node_modules/@mcphub/gateway/dist/src/mcphub-gateway.js
  • macOS (default): /usr/local/lib/node_modules/@mcphub/gateway/dist/src/mcphub-gateway.js
  • Windows: %AppData%\npm\node_modules\@mcphub\gateway\dist\src\mcphub-gateway.js

2. Configure Claude Desktop

Update your Claude Desktop configuration file:

Configuration file location:

  • macOS: ~/Library/Application Support/Claude Desktop/config.json
  • Windows: %APPDATA%\Claude Desktop\config.json

Add the following configuration (replace the path with your actual gateway path):

{
  "mcpServers": {
    "mcphub": {
      "command": "node",
      "args": ["/opt/homebrew/lib/node_modules/@mcphub/gateway/dist/src/mcphub-gateway.js"]
    }
  }
}

3. Start Using MCPHub

Restart Claude Desktop to begin using MCPHub servers. The gateway will automatically connect to MCPHub's server at https://server.mcphub.ai/api/mcp.

Ask in Claude Desktop:

Can you search for all Python MCP servers?

View Full Documentation