PHANTOMDIGITAL
Protocol

Model Context Protocol

Connect Phantom Digital tools to any MCP-compatible client — Claude, Cursor, Windsurf, and more.

Install

Run the MCP server locally or deploy to Cloudflare Workers:

npx @phantom-digital/mcp

Authentication

Set your API key as an environment variable:

PHANTOM_MCP_API_KEY=your_key_here

Claude Desktop

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "phantom-digital": {
      "command": "npx",
      "args": ["@phantom-digital/mcp"],
      "env": {
        "PHANTOM_MCP_API_KEY": "your_key_here"
      }
    }
  }
}

SSE Mode

For browser-based clients, connect via SSE:

# Server URL (deployed)
https://mcp.phantom-digital.com/sse

# Auth header
Authorization: Bearer your_key_here