MCP with AI assistants
The usertrax MCP server lets AI assistants query your live analytics (dashboard, conversions, sessions, feedback, surveys). A/B testing via MCP (analyze, create, update, delete) requires the Business plan. Consent covers read and write for those tools.
https://api.usertrax.io/mcp/platformSame URL in the dashboard under Settings → MCP / AI Assistants.
How auth works
Section titled “How auth works”usertrax uses OAuth 2.1 (browser login with magic link). You do not create an API/MCP token or paste a Bearer header into config — the client opens a browser, you confirm consent (usertrax Platform MCP, Lesen und Schreiben), done.
The token is tied to your user. Pick teams in the conversation (list_teams → team_id); otherwise your current team is used.
Connect clients
Section titled “Connect clients”Claude.ai / Claude Desktop
Section titled “Claude.ai / Claude Desktop”- Open Customize → Connectors (or Settings → Connectors)
- Add a custom connector
- URL:
https://api.usertrax.io/mcp/platform - Connect → magic link + consent in the browser
- Use the connector in chat and ask analytics questions
ChatGPT
Section titled “ChatGPT”- Enable Developer Mode in ChatGPT settings
- Connectors (or Plugins) → create a connector
- MCP URL:
https://api.usertrax.io/mcp/platform, auth: OAuth - Connect → magic link + consent
- Enable the connector in the chat
Claude Code
Section titled “Claude Code”claude mcp add --transport http usertrax https://api.usertrax.io/mcp/platformOptionally add --scope user for all projects.
Then start Claude Code, run /mcp → usertrax → Authenticate → browser login. Status: claude mcp list.
Cursor
Section titled “Cursor”Native HTTP URL in MCP settings (OAuth with cursor:// callback):
{ "mcpServers": { "usertrax": { "url": "https://api.usertrax.io/mcp/platform" } }}On first use: Authenticate → magic link + consent in the browser.
Alternative via mcp-remote (stdio bridge, local http:// callback):
{ "mcpServers": { "usertrax": { "command": "npx", "args": ["-y", "mcp-remote", "https://api.usertrax.io/mcp/platform"] } }}Example prompts
Section titled “Example prompts”- “Which teams do I have — which ones have MCP?”
- “Dashboard for the last 7 days.”
- “Conversions this week by domain.”
- “Running A/B tests — any significance yet?”
- “New feedback with comments?”
Full tool list: Tool reference.
Safety in short
Section titled “Safety in short”- Read-only tools only, rate-limited endpoint
- No domain
auth_keys, no export credentials - Plan and team checks on every call
- Consent revocable (remove the connector in the client)