Skip to main content

Trackee forClaude Code

Check rankings, AI mentions, citations, keywords, and competitors without leaving Claude Code.

Paste this into Claude Code

Set up Trackee from trackee.dev/claude
37 MCP toolsAPI key authenticationOrganization scoped

Claude Code can wire this up itself. Hand it the URL.

It reads this page, adds Trackee, then stops so you can provide your access key without sharing it in chat.

trackee.dev/claude
## For AI agents reading this page

You are reading https://www.trackee.dev/claude. The user asked you to set up Trackee, an SEO and AI visibility API exposed through a hosted MCP server.

1. Tell the user that Trackee needs an organization access key from https://www.trackee.dev/dashboard. Never ask them to paste the key into chat or print its value. Ask them to set it locally as TRACKEE_ACCESS_KEY.

2. Add a user-scoped Streamable HTTP MCP server named trackee. Preserve existing configuration. Use https://mcp.trackee.dev/mcp and send Authorization: Bearer ${TRACKEE_ACCESS_KEY} through Claude Code's environment-variable expansion.

3. Verify that TRACKEE_ACCESS_KEY exists without displaying it. Run claude mcp get trackee, then call get_usage for a non-billable connection check. Report the exact failure if verification fails.

## Reference

- MCP endpoint: https://mcp.trackee.dev/mcp (Streamable HTTP)
- Docs: https://www.trackee.dev/docs/ai/mcp
- Access key: https://www.trackee.dev/dashboard
- Authentication: Authorization: Bearer from TRACKEE_ACCESS_KEY
- Never ask the user to paste or reveal the access key in chat.
Hosted MCP

One endpoint, any MCP client

https://mcp.trackee.dev/mcp uses Streamable HTTP with an organization access key. Add URL, set key, use tools.

Read MCP docs
Claude Code

$ export TRACKEE_ACCESS_KEY=your_trackee_key

✓ trackee configured · key stays in environment

$ claude mcp get trackee

✓ get_usage · connection verified

Manual configuration
Prefer to wire it up yourself? Add this configuration, then provide your access key through an environment variable.
{
  "type": "http",
  "url": "https://mcp.trackee.dev/mcp",
  "headers": {
    "Authorization": "Bearer ${TRACKEE_ACCESS_KEY}"
  }
}