Connect Corbacount to Claude, ChatGPT, Cursor or any MCP-capable assistant and just ask - "how many visitors yesterday?", "which source converts best?", "who is on the site right now?". It reads straight from your dashboard, in plain language. Read-only, scoped to your account, included on every plan.
MCP (Model Context Protocol) is the open standard AI assistants use to pull in live data. Corbacount ships an MCP server at mcp.corbacount.com - point your AI at it once, and from then on it can answer questions about your real traffic instead of guessing.
No dashboards to click through and no query language to learn. Ask the way you would ask a colleague, and the AI chains the right lookups together for you.
The AI can read your stats but can never change, create or delete anything. Each personal token only ever sees the sites on your own account, and you can revoke it any time.
Like every Corbacount feature, the MCP server is on Solo, Studio and Agency alike at no extra cost. Generate a token and connect as many AI clients as you like.
A taste of what your AI can answer once it is connected. It can also combine these - "compare US mobile visitors from Google this month versus last, and tell me if conversions moved with them".
In your dashboard go to Profile → API & MCP and create a personal token. It is shown once - copy it somewhere safe. Revoke it any time from the same screen.
Add the endpoint https://mcp.corbacount.com/mcp to your AI client with your token as a bearer header. One command for Claude Code, a couple of fields for other clients.
"Using Corbacount, what were my top traffic sources last month?" The AI picks the right tools, fetches your data and answers - with the numbers, not a guess.
Claude Code, one line:
claude mcp add --transport http corbacount \
https://mcp.corbacount.com/mcp \
--header "Authorization: Bearer YOUR_TOKEN"
The endpoint is https://mcp.corbacount.com/mcp and you authenticate with your personal token as a bearer header. Wherever you see YOUR_TOKEN, paste the token from Profile → API & MCP.
One command in your terminal:
claude mcp add --transport http corbacount \
https://mcp.corbacount.com/mcp \
--header "Authorization: Bearer YOUR_TOKEN"
Open Settings → Developer → Edit Config, add the block below, save and restart Claude. It uses the mcp-remote bridge (installed automatically by npx) to attach your token; keeping the token in env avoids a quoting pitfall.
{
"mcpServers": {
"corbacount": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.corbacount.com/mcp",
"--header", "Authorization:${CORBA_AUTH}"],
"env": { "CORBA_AUTH": "Bearer YOUR_TOKEN" }
}
}
}
Add to ~/.cursor/mcp.json (or a project's .cursor/mcp.json):
{
"mcpServers": {
"corbacount": {
"url": "https://mcp.corbacount.com/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
Any client that speaks remote (HTTP) MCP works. For VS Code, add to .vscode/mcp.json:
{
"servers": {
"corbacount": {
"type": "http",
"url": "https://mcp.corbacount.com/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
The web "custom connector" features in ChatGPT (developer mode) and Claude.ai sign in with OAuth rather than a pasted token, so one-click connect there is the next thing we are wiring up. In the meantime the desktop and developer tools above connect with your token today - and that is the same data the web versions will see. Tell us if you want a nudge when web connect goes live.
Generate or revoke tokens any time under Profile → API & MCP in your dashboard.
It is a remote Model Context Protocol server at mcp.corbacount.com that lets an AI assistant read your Corbacount analytics. You connect a client like Claude, ChatGPT or Cursor with a personal token, then ask questions in plain language and the AI fetches the answer from your dashboard data.
Yes. The MCP server is included on every tier - Solo, Studio and Agency - at no extra cost, just like every other Corbacount feature. See pricing.
No. The MCP server is strictly read-only. It can read visitors, traffic sources, goals, funnels and SEO data, but it cannot create, edit or delete anything. Each personal token only ever sees the sites on your own account.
Any client that supports remote (HTTP) MCP servers, including Claude Code, Cursor and other MCP-capable assistants. You generate a token under Profile → API & MCP, and point the client at https://mcp.corbacount.com/mcp.
Anything your dashboard knows: visitors and pageviews today versus yesterday, your top pages and traffic sources, who is on the site right now, conversion and funnel drop-off, which country or device dominates, AI-search referrals from ChatGPT or Perplexity, Core Web Vitals and backlink health.
Want the full picture first? Take the dashboard tour or see the pricing.
The MCP server ships on every plan. Drop your email and we will let you know when it is your turn.