MCP Integration

Connect SeeLLM to your AI assistant via the Model Context Protocol (MCP).

What is MCP?

The Model Context Protocol (MCP) is an open standard that lets AI assistants connect to external data sources. SeeLLM's MCP server gives your AI assistant direct access to your traffic intelligence data.

Instead of switching to a dashboard, you can ask your AI assistant questions like:

  • "What's my AI traffic trend this month?"
  • "Which AI platforms are visiting my site most?"
  • "What would happen if I blocked GPTBot?"

Setup

Prerequisites

You need a SeeLLM API key. Generate one in your dashboard under Settings > API Keys.

Claude Desktop

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "seellm": {
      "url": "https://mcp.seellm.ai/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_api_key_here"
      }
    }
  }
}

Cursor

Add this to your project's .cursor/mcp.json:

{
  "mcpServers": {
    "seellm": {
      "url": "https://mcp.seellm.ai/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_api_key_here"
      }
    }
  }
}

Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "seellm": {
      "type": "url",
      "url": "https://mcp.seellm.ai/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_api_key_here"
      }
    }
  }
}

Next Steps