Cursor's built-in MCP integration lets you query your clariBI data while you code. Use it to pull live KPIs into PR descriptions, generate hypothesis-checking analyses without context-switching, or have Cursor write code informed by real metrics.
Prerequisites
- A clariBI account on the Trial, Starter, Professional, or Enterprise tier.
- Cursor with MCP support enabled.
Step 1. Add the clariBI MCP server in Cursor
- Open Settings → Cursor Settings → MCP.
- Click + Add MCP Server.
- Choose the Streamable HTTP transport.
- Use these values:
{
"name": "clariBI",
"url": "https://claribi.com/mcp/v1/",
"transport": "streamable-http"
}
Step 2. Authorize via OAuth (recommended)
On first use, Cursor opens your browser to clariBI's consent screen. Sign in, review the scopes the integration is asking for, and click Allow. The browser hands the token back to Cursor and the connection is live.
Cursor supports OAuth 2.1 with PKCE end-to-end, so you don't need to mint or copy an API key by hand.
Step 3. Try it
In Cursor's chat panel, ask:
What does my "Sales Pipeline" dashboard show this week?
Cursor will look up the dashboard via list_dashboards + get_dashboard, then summarize the latest data in line with your editor session.
Tool reference
The full tool list, scopes, and schema are available in the Developer Portal → MCP Server → Tool docs tab. Cursor surfaces each tool's description in its consent UI.
API-key fallback
If your network can't complete the OAuth redirect (offline laptops, air-gapped environments), mint an API key from the developer portal and add it to Cursor's MCP entry under custom headers:
"Authorization": "Bearer claribi_mcp_<your-key>"