Back to Changelog
Featurev1.3.1

Hosted MCP

OMOPHub now hosts the MCP Server at mcp.omophub.com. Connect your AI client with just a URL and API key, no installation required. v1.3.1 also brings per-session HTTP transport and reliability fixes.

The OMOPHub MCP Server is now available as a hosted service at mcp.omophub.com. Connect Claude Code, VS Code, Cursor, or any MCP-compatible client directly - no npm install, no Docker, no infrastructure to manage. Just your API key and a URL.

Hosted MCP

Each client authenticates with their own API key via the Authorization: Bearer header. All 9 tools are available instantly.

Claude Code:

claude mcp add omophub --transport http \
  -H "Authorization: Bearer oh_your_key_here" \
  https://mcp.omophub.com

VS Code / Cursor:

{
  "servers": {
    "omophub": {
      "type": "http",
      "url": "https://mcp.omophub.com",
      "headers": {
        "Authorization": "Bearer oh_your_key_here"
      }
    }
  }
}

Claude Desktop users: use the npx setup instead (Custom Connectors UI only supports OAuth).

Full setup guide: Hosted MCP Documentation

Resources