clariBIcom
clariBI is an AI-powered business intelligence platform that lets SaaS and ecommerce teams ask plain-English questions across Stripe, HubSpot, Google Analytics, ad platforms, and 30+ other sources. The AI engine picks the right visualization from 24 chart types and generates dashboards automatically.
README
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 | https://claribi.com/mcp/v1/ |
2025-03-26 |
| SSE (legacy) | https://claribi.com/mcp/v1/sse |
2024-11-05 |
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-server - Protected 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 catalog
Tools 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-mcp
from 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/mcp
import { 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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。