Sponsored by Deepsite.site

Claribi.com

创建者
Darek Černý2 months ago
clariBI is an AI-powered business intelligence platform built for small and mid-sized SaaS, ecommerce, and operations teams. Instead of writing SQL or building dashboards manually, users ask questions in plain English ("what's our CAC by channel last quarter?") and the AI engine pulls the data from Stripe, HubSpot, Google Analytics, ad platforms, Jira, and 30+ other sources via the open Model Context Protocol. Dashboards generate themselves on source connect.
内容

clariBI MCP Server

PyPI npm MCP Registry smithery badge

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

TransportURLProtocol version
Streamable HTTPhttps://claribi.com/mcp/v1/2025-03-26
SSE (legacy)https://claribi.com/mcp/v1/sse2024-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

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.

服务器配置

{
  "mcpServers": {
    "claribi": {
      "url": "https://claribi.com/mcp/v1/",
      "headers": {
        "Authorization": "Bearer claribi_mcp_<paste-your-key-here>"
      }
    }
  }
}
推荐的 MCP Server
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Playwright McpPlaywright MCP server
Serper MCP ServerA Serper MCP Server
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Amap Maps高德地图官方 MCP Server
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
DeepChatYour AI Partner on Desktop
Tavily Mcp
CursorThe AI Code Editor
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
WindsurfThe new purpose-built IDE to harness magic
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
ChatWiseThe second fastest AI chatbot™
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.