Last Updated: 2026-07-04
The Stellar MCP server lets you chat with your experiment data from any AI assistant that supports the Model Context Protocol — Claude, Cursor, ChatGPT and more. Ask questions like “How is my pricing page experiment doing?” or “Which variant is winning this month?” and your assistant pulls live, read-only data from every project you have access to.
Pro Feature: MCP access works on projects with a paid plan. Generate your personal key from Account → Stellar MCP.
stlu_... and are shown only once.Endpoint: https://api.gostellar.app/mcp Authentication: Authorization: Bearer stlu_YOUR_KEY
Keep your MCP key secret. It grants read access to the data of every project you belong to. You can revoke or regenerate it at any time from your Account page.
Add this to ~/.cursor/mcp.json (or your project's .cursor/mcp.json):
{
"mcpServers": {
"stellar": {
"url": "https://api.gostellar.app/mcp",
"headers": {
"Authorization": "Bearer stlu_YOUR_KEY"
}
}
}
}Claude Desktop connects to remote servers through the mcp-remote bridge. Add this to claude_desktop_config.json:
{
"mcpServers": {
"stellar": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.gostellar.app/mcp",
"--header",
"Authorization: Bearer stlu_YOUR_KEY"
]
}
}
}Any MCP client that supports remote servers over Streamable HTTP works. If your client supports custom headers, point it at https://api.gostellar.app/mcp with the Authorization header above. If it only supports local (stdio) servers, use the mcp-remote bridge as in the Claude Desktop example.
All tools are read-only. Your assistant decides which to call based on your question.
| Tool | What it returns |
|---|---|
list_projects | All projects you have access to, with ids, domains and roles |
get_project | Project summary: name, domain, experiment count |
list_experiments | Experiments for a project, filterable by status |
get_experiment | Full experiment detail: variants, visitors, conversions, statistical significance |
get_project_mtu | Monthly tracked users for a project (last 6 months) |
get_account_usage | Current-month MTU total and per-project breakdown |
list_funnels / get_funnel_stats | Funnel definitions and step-by-step drop-off stats |
list_heatmap_pages / get_heatmap_hotspots | Click activity by page and the most-clicked elements on a page |
list_opportunity_runs / get_opportunity_run | AI CRO audit results with detected opportunities and suggested tests |
The MCP endpoint is rate-limited to 120 requests per minute. If you exceed this you'll receive a 429 Too Many Requests response; your assistant will typically retry automatically.
Prefer raw REST? The same data is available through the Stellar Data API with a project-scoped API key.
Need help? If you run into issues setting up the MCP server, reach out to us at hello@gostellar.app.