Description

MCPHub is an embeddable Model Context Protocol solution for AI services. Seamlessly integrate MCP servers with OpenAI Agents.

Installation

npx -y mcphub-server
npm install mcphub-server
git clone https://github.com/Cognitive-Stack/mcphub

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "mcphub-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcphub-server"
      ]
    }
  }
}