Getting Started
Quick Start Guide
Get up and running with clariBI in under 5 minutes. Connect your first data source and create a report.
Read Guide →Installation
Set up your clariBI account, configure your organization, and invite your team.
Account Setup →Your First Report
Step-by-step tutorial to create your first report using templates and AI insights.
Create Report →REST API Reference
Complete REST API documentation for developers integrating clariBI into their applications.
View API Docs →MCP Server
Use clariBI from Claude Desktop, Cursor, ChatGPT, or any MCP-compatible LLM client. Tools, OAuth, SDKs.
View MCP Docs →Data Sources
App Integrations
One-click OAuth for Google Analytics, Google Ads, Meta Ads, Google Sheets, Jira, Confluence, BigQuery, and more.
Connect Apps →Core Features
AI-Powered Insights
Automatic pattern detection, anomaly alerts, and natural language analytics powered by AI.
Ask clariBI
Query your data using natural language. Ask questions and get instant visualizations.
Dashboards
Template-based dashboard creation with 600+ industry templates and AI-generated metrics.
Automated Reports
Schedule and distribute PDF reports with AI-generated summaries and insights.
Forecasting
Project any metric ahead, surface correlated drivers, flag anomalies, and detect structural changes. Nine deterministic methods, walk-forward backtest, prediction band on the chart.
MCP Catalog & Data Sources
Connect 90+ vendors via the MCP catalog (Stripe, HubSpot, Linear, Notion, GitHub, …), plus native OAuth, direct database connections (PostgreSQL, MySQL, SQL Server, Oracle, SQLite), and file uploads.
Team Collaboration
Share dashboards with workspaces, add comments and @mentions, and manage team permissions.
API Reference
REST API
REST API for integrating clariBI into your applications. JWT authentication and CRUD operations.
Code Example
// Generate AI insights
const response = await fetch('/api/conversational/query/', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
data_source_id: 'ds_abc123',
query: 'What were our top products last month?'
})
});
const insights = await response.json();
console.log(insights.summary);