clariBIcom

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.

Category
Visit Server

README

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

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

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured