@kitbase/analytics-mcp
v0.1.2
Published
MCP server for querying Kitbase analytics data
Maintainers
Readme
@kitbase/analytics-mcp
MCP (Model Context Protocol) server that lets AI agents query Kitbase analytics data. Connect it to Claude Code, Cursor, or any MCP-compatible client to give your AI assistant access to your analytics.
Installation
npm install @kitbase/analytics-mcpOr run directly with npx:
npx -y @kitbase/analytics-mcpConfiguration
The server is configured via environment variables:
| Variable | Required | Description |
|---|---|---|
| KITBASE_API_KEY | Yes | Private API key (must start with sk_kitbase_) |
| KITBASE_API_URL | No | Kitbase API base URL (default: https://api.kitbase.dev) |
The project and environment are automatically resolved from the API key — no need to specify them manually.
MCP Client Configuration
Claude Code
Run this command to add the MCP server:
claude mcp add kitbase-analytics -e "KITBASE_API_KEY=sk_kitbase_your_key_here" -- npx -y @kitbase/analytics-mcpOr add it manually to your MCP settings:
{
"mcpServers": {
"kitbase-analytics": {
"command": "npx",
"args": ["@kitbase/analytics-mcp"],
"env": {
"KITBASE_API_KEY": "sk_kitbase_your_key_here"
}
}
}
}Cursor / Other MCP Clients
Use the same JSON configuration format. The server communicates over stdio using the standard MCP protocol.
Available Tools
Web Analytics
| Tool | Description |
|---|---|
| get_web_summary | Get summary KPIs (visitors, pageviews, bounce rate, etc.) with percentage changes vs previous period |
| get_web_timeline | Get metrics over time (timeseries data for charting trends) |
| get_web_breakdown | Break down metrics by dimension (pages, countries, browsers, referrers, etc.) |
| compare_periods | Compare web analytics between two time periods — shows which dimension values changed the most |
Events
| Tool | Description |
|---|---|
| list_events | List tracked events with optional filtering by name, user, or date range |
| get_event_stats | Get aggregated event statistics with timeline and optional property breakdown |
Users
| Tool | Description |
|---|---|
| list_users | List or search users in the project |
| get_user_summary | Get comprehensive analytics summary for a specific user (total events, first/last seen, top events, etc.) |
| get_user_activity | Get daily activity heatmap data for a specific user over the last N months |
| get_user_events | List paginated events for a specific user |
Sessions
| Tool | Description |
|---|---|
| list_sessions | List sessions with optional filtering |
| get_session_detail | Get detailed session info including all events in the session |
Funnels
| Tool | Description |
|---|---|
| analyze_funnel | Analyze conversion funnel with ordered steps and get conversion rates between each step |
Journeys
| Tool | Description |
|---|---|
| analyze_journeys | Analyze user navigation paths showing common routes through pages or events |
Frustration Signals
| Tool | Description |
|---|---|
| get_frustration_report | Get frustration signals report (rage clicks, dead clicks) with top frustrated pages and elements |
Common Parameters
Date Filtering
Most tools accept date filtering via either a preset or explicit date range:
preset: One oflast_30_minutes,last_hour,today,yesterday,last_7_days,last_30_days,this_month,this_yearfrom/to: Explicit date range inYYYY-MM-DDformattimezone: Timezone for date calculations (default:UTC)
Pagination
List endpoints support pagination:
page: Page number (0-indexed)size: Number of items per page
Filters
Web analytics tools support filters in the format dimension:operator:values:
"country:is:US"
"browser:is:Chrome"
"page:contains:/blog"Example Usage
Once connected, you can ask your AI assistant questions like:
- "How many visitors did we get last week?"
- "What are our top pages by pageviews this month?"
- "Compare this week's traffic sources to last week"
- "Show me the signup funnel conversion rate"
- "What countries are our users coming from?"
- "Find sessions for user [email protected]"
- "Show me a summary of user [email protected]'s activity"
- "What's the most common user journey from the homepage?"
- "Are there any frustration signals on our site?"
Development
# Install dependencies
pnpm install
# Build
pnpm build
# Run tests
pnpm test
# Watch mode
pnpm devLicense
MIT
