clariBIcom
clariBI MCP Server
Public reference for the clariBI Model Context Protocol server, a hosted MCP endpoint that lets LLM clients sign users up, upload data, connect cloud sources via OAuth, run natural-language analyses, and generate reports.
This repo holds the public manifest, examples, and reference documentation. The clariBI platform itself is a commercial hosted service; the hosted MCP endpoint is documented here so any spec-compliant MCP client can connect.
Endpoint
Transport | URL | Protocol version |
Streamable HTTP |
| 2025-03-26 |
SSE (legacy) |
| 2024-11-05 |
Related MCP server: ChartMogul MCP Server
Authentication
OAuth 2.1 with Dynamic Client Registration (RFC 7591). Discovery endpoints:
Authorization Server Metadata (RFC 8414):
https://claribi.com/mcp/v1/.well-known/oauth-authorization-serverProtected Resource Metadata (RFC 9728):
https://claribi.com/mcp/v1/.well-known/oauth-protected-resource
Public clients use PKCE S256. Confidential clients receive a client secret on registration.
Alternative for single-user installations: bearer token
Authorization: Bearer claribi_mcp_<key>. Mint a key inside the
clariBI web app under Settings > Developer > MCP Server.
Surface
19 tools, 3 resources, 2 prompts. Tool names and JSON schemas are published live at the tool catalog endpoint:
curl https://claribi.com/mcp/v1/ # returns server metadata
curl https://claribi.com/api/mcp-server/tool-catalog/ # full catalogTools include register_account, verify_email, check_pricing
(all unauthenticated for sign-up from chat), upload_data_source,
ingest_url_data_source, request_oauth_integration_url,
run_analysis, generate_report, get_usage, get_billing_status,
create_checkout_session, and dashboard/report list/get tools.
Official SDKs
Both SDKs are MIT-licensed and codegen-driven from the live tool catalog so the typed method surface never drifts from the server.
Python
pip install claribi-mcpfrom claribi_mcp import Client
with Client(api_key="claribi_mcp_...") as client:
client.initialize()
result = client.run_analysis(
question="What was revenue by region last quarter?",
wait_seconds=30,
)
print(result.text)Source on PyPI: https://pypi.org/project/claribi-mcp/
TypeScript
npm install @claribicom/mcpimport { Client } from '@claribicom/mcp';
const client = new Client({ apiKey: 'claribi_mcp_...' });
await client.initialize();
const r = await client.callTool('run_analysis', {
question: 'What was revenue by region last quarter?',
wait_seconds: 30,
});
console.log(r.text());Source on npm: https://www.npmjs.com/package/@claribicom/mcp
MCP Server Registry
Listed in the official Model Context Protocol Server Registry under
the namespace com.claribi/mcp-server:
curl 'https://registry.modelcontextprotocol.io/v0.1/servers?search=com.claribi'Manifest: server.json.
Pricing and tier gating
MCP Server access is gated by the mcp_server_access feature flag on
the clariBI subscription. It ships with Trial (free, 14 days),
Starter ($99/mo), Professional ($199/mo), and Enterprise ($999/mo).
Excluded from Free and Lite. Tool error responses indicate which
quota was hit.
Sign-up tools (register_account, verify_email, check_pricing)
do not require a subscription, so a new user can provision a Trial
workspace from inside their LLM client without any prior account.
Documentation
Overview: https://claribi.com/docs/mcp/overview
Connecting from Claude Desktop: https://claribi.com/knowledge-base/mcp-connect-claude-desktop/
Connecting from Cursor: https://claribi.com/knowledge-base/mcp-connect-cursor/
Sign-up via LLM walkthrough: https://claribi.com/knowledge-base/mcp-signup-via-llm/
API reference: https://claribi.com/knowledge-base/mcp-api-reference/
Security
Vulnerability disclosure: security@claribi.com. See SECURITY.md.
License
This repository (README, manifest, examples, SDK code) is MIT.
The hosted clariBI platform that the server fronts is a commercial service; using the MCP server endpoint requires a clariBI account.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI-powered analytics from Stripe, PayPal, and Google Analytics 4 (BigQuery) data sources with built-in guardrails and automated workflows for financial and web performance insights.Last updated

ChartMogul MCP Serverofficial
AlicenseAqualityFmaintenanceEnables interaction with the ChartMogul API to manage subscription data, customer relationships, and sales CRM activities. It allows users to retrieve key business metrics like MRR and churn while performing data operations on plans, invoices, and contacts.Last updated558MIT
Databox MCPofficial
Flicense-qualityDmaintenanceDatabox MCP enables you to query live business metrics from 100+ data sources through AI. Ask natural language questions about marketing performance, sales data, analytics, and financial metrics to get instant insights without switching dashboards. Connect platforms like Google Ads, Salesforce, Shopify, Google Analytics, and more.Last updated1
Presso MCP Serverofficial
Alicense-qualityDmaintenanceConnects e-commerce and marketing data sources like Shopify, GA4, Google Ads, and Meta Ads to AI assistants, enabling natural language queries about store performance, ad campaigns, and customer behavior.Last updated72MIT
Related MCP Connectors
Ask your app anything — revenue, errors, read-cost, growth — and get rendered charts back.
Ask AI about your ads — query Meta, TikTok, and Google Ads performance in natural language.
AI marketing agent for Google Ads, Meta, GA4, TikTok, LinkedIn, Shopify, HubSpot and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ICS-cz/claribi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server