Skip to main content

Trackee forCursor

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

Paste this into Cursor

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

Cursor 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/cursor
## For AI agents reading this page

You are reading https://www.trackee.dev/cursor. 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-level Streamable HTTP server named trackee in ~/.cursor/mcp.json. Preserve existing servers. Use https://mcp.trackee.dev/mcp and send Authorization: Bearer ${env:TRACKEE_ACCESS_KEY} through Cursor's environment-variable expansion.

3. Verify that TRACKEE_ACCESS_KEY exists without displaying it, then restart Cursor. Open Settings > Tools & MCP, confirm trackee is enabled, and 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
Cursor

$ export TRACKEE_ACCESS_KEY=your_trackee_key

✓ trackee configured · key stays in environment

$ Settings → Tools & MCP

✓ get_usage · connection verified

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