Skip to main content

Prerequisites

  • A Range API key — get one at app.range.org/keys
  • An MCP-compatible AI client (Claude Desktop, Claude.ai, Cursor, or any OpenAI-compatible tool)
You use the same API key you already have. No new credentials, no separate signup.

MCP endpoint

https://api.range.org/ai/mcp
This endpoint speaks the Model Context Protocol over Streamable HTTP. Every call is authenticated with your existing API key.

Connect your client

Open your Claude Desktop config file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the Range server under mcpServers:
{
  "mcpServers": {
    "range": {
      "type": "http",
      "url": "https://api.range.org/ai/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key_here"
      }
    }
  }
}
Restart Claude Desktop. You should see “range” appear in the tools panel (hammer icon).

Your first investigation

Once connected, paste this prompt into your AI client:
Investigate this wallet and tell me if I should be concerned about it:
5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1

Check its risk score, see if it's sanctioned, find its top counterparties,
and summarize what kind of entity this appears to be.
The AI will call get_address_risk, check_sanctions, get_address_connections, and get_address_info autonomously and return a structured summary.

Next steps

Last modified on March 5, 2026