MCP

Installation

Connect GraphRanks to Claude and other MCP clients.

What the MCP server does

The GraphRanks MCP server lets AI assistants run audits and read your graphs directly, using the same quota as the web app. It speaks streamable HTTP and authenticates with an API key.

Endpoint
https://api.graphranks.com/mcp

1. Create an API key

Create a key on the API keys tab and copy it — it's shown only once. It authenticates the connection and carries your plan's quota.

2. Add it to Claude Desktop

In Claude Desktop open Settings → Developer → Edit config, add the graphranks entry under mcpServers, and replace YOUR_API_KEY with your key. Save and restart Claude Desktop.

{
  "mcpServers": {
    "graphranks": {
      "type": "http",
      "url": "https://api.graphranks.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Or add it to Claude Code

Register the server from your terminal:

claude mcp add graphranks --transport http https://api.graphranks.com/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Any MCP client that speaks streamable HTTP works — point it at the endpoint above with an Authorization: Bearer header. Both /mcp and /mcp/ work.