Remote MCP server that lets your AI agent audit conversion tracking (pixels, CAPI, server-side tagging) on any website — and, with an API key, read and configure your own Track Combo account.
Streamable HTTP endpoint:
https://mcp.trackcombo.com/mcp
The tracking-audit tools are free and need no login. Account tools require a Track Combo API key (app → Account → API Keys), sent as an Authorization: Bearer <key> header.
claude mcp add --transport http trackcombo https://mcp.trackcombo.com/mcp
With an API key:
claude mcp add --transport http trackcombo https://mcp.trackcombo.com/mcp \ --header "Authorization: Bearer tc_live_your_key"
ChatGPT supports remote MCP servers as developer-mode apps (Plus, Pro, Business, Enterprise and Education, on the web). ChatGPT only offers OAuth or no authentication for custom MCP servers, so it cannot send a Track Combo API key: only the free audit and help tools are available there.
https://mcp.trackcombo.com/mcp.For account tools, use Claude Code, Cursor or Claude Desktop (below). OAuth sign-in is on our roadmap.
Add it to ~/.cursor/mcp.json (or the project's .cursor/mcp.json):
{
"mcpServers": {
"trackcombo": {
"url": "https://mcp.trackcombo.com/mcp",
"headers": { "Authorization": "Bearer tc_live_your_key" }
}
}
}
Drop the headers block to use only the free tools.
The connectors screen does not accept auth headers. Add this to claude_desktop_config.json (Settings → Developer → Edit Config); requires Node.js:
{
"mcpServers": {
"trackcombo": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.trackcombo.com/mcp",
"--header", "Authorization:${TC_AUTH}"],
"env": { "TC_AUTH": "Bearer tc_live_your_key" }
}
}
}
claude.ai custom connectors accept the URL https://mcp.trackcombo.com/mcp without authentication (free tools only). Any client that supports remote MCP over Streamable HTTP and custom headers can use Authorization: Bearer tc_live_your_key for account access.
Step-by-step guide (pt-BR): trackcombo.com/help/conectar-mcp
Docs and help center: trackcombo.com/help · trackcombo.com