01
Create an access key
Sign up, choose the workspace you want to track, and copy your organization access key.
For developers
Trackee ships a hosted MCP server and a coding skill, so Claude, Cursor, Codex, or any function-calling agent can run visibility checks, rank tracking, and keyword research on its own.
No credit card required.Track visibility across
Agents are only as good as the tools they can call. Trackee hands yours a hosted MCP at mcp.trackee.dev/mcp and a skill you add with npx skills add, both returning clean JSON that is easy to parse.
Point any MCP client at mcp.trackee.dev/mcp and your agent gets visibility, rank, and keyword tools with no setup.
Run npx skills add to drop a Trackee skill into Claude, Cursor, or Codex so it knows how to call the API.
Every response is structured and predictable, so agents can read results without scraping or guessing.
Prefer plain HTTP? The same visibility, rank, and keyword endpoints are one authenticated request away.
POST /v1/visibility
Under the MCP and skill, every tool maps to a plain REST request like this one.
curl -X POST https://api.trackee.dev/v1/visibility \
-H "x-access-key: YOUR_API_KEY" \
-H "content-type: application/json" \
-d '{
"brand": "Acme",
"prompt": "best project management software",
"engines": ["chatgpt", "claude", "gemini", "perplexity"]
}'{
"brand": "Acme",
"prompt": "best project management software",
"mentioned_in": ["chatgpt", "perplexity"],
"summary": {
"coverage_pct": 50,
"avg_position": 3,
"share_of_voice": 22,
"sentiment": "positive"
}
}From access key to your first result in minutes.
01
Sign up, choose the workspace you want to track, and copy your organization access key.
02
Pass a brand, prompt, or keyword to one endpoint. Trackee runs the check across search and AI.
03
Use structured visibility, citation, and competitor data in your product, agent, or dashboard.
A first-party Claude Code skill, a hosted MCP server, and a plain REST API. All official, all maintained.
Add Trackee instructions to your coding agent so it can plan and run visibility checks directly.
npx skills add trackeeConnect any MCP-compatible client to Trackee's hosted tools with one organization access key.
{
"mcpServers": {
"trackee": {
"url": "https://mcp.trackee.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Call the same visibility data from your own agent, product, workflow, or server-side application.
curl -X POST https://api.trackee.dev/v1/visibility \
-H "x-access-key: YOUR_API_KEY" \
-H "content-type: application/json" \
-d '{"brand":"Acme","prompt":"best project management software"}'Point your MCP client at the hosted server or add the skill to your coding agent. Start with the MCP server and you are calling tools in minutes.
Yes. Any function-calling agent can use the tools, and the agent skill drops in with a single npx skills add command.
Run visibility checks, rank tracking, and keyword research across ChatGPT, Claude, Gemini, and Perplexity. See the full AI agents guide.
No. The same tools are plain REST endpoints, so an agent can call the API directly whenever that fits better.