outlit-mcp
Use when querying Outlit customer data via MCP tools (outlit_*). Triggers on customer analytics, revenue metrics, activity timelines, cohort analysis, churn risk assessment, SQL queries against analytics data, or any Outlit data exploration task.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/leo-paz/outlit-mcpOutlit MCP Server
Query customer intelligence data through 6 MCP tools covering customer and user profiles, revenue metrics, activity timelines, and raw SQL analytics access.
Quick Start
| What you need | Tool |
|---|---|
| Browse/filter customers | outlit_list_customers |
| Browse/filter users | outlit_list_users |
| Single customer deep dive | outlit_get_customer |
| Customer activity history | outlit_get_timeline |
| Custom analytics / aggregations | outlit_query (SQL) |
| Discover tables & columns | outlit_schema |
Before writing SQL: Always call outlit_schema first to discover available tables and columns.
Common Patterns
Find at-risk customers:
{
"tool": "outlit_list_customers",
"billingStatus": "PAYING",
"noActivityInLast": "30d",
"orderBy": "mrr_cents",
"orderDirection": "desc"
}
Revenue breakdown (SQL):
{
"tool": "outlit_query",
"sql": "SELECT billing_status, count(*) as customers, sum(mrr_cents)/100 as mrr_dollars FROM customer_dimensions GROUP BY 1 ORDER BY 3 DESC"
}
MCP Setup
Get an API Key
Go to Settings > MCP Integration in the Outlit dashboard (app.outlit.ai).
Auto-Detection Setup
Detect the current environment and run the appropriate setup command:
-
Check for Claude Code — If running inside Claude Code (check if
claudeCLI is available), run:claude mcp add outlit https://mcp.outlit.ai/mcp -- --header "Authorization: Bearer API_KEY" -
Check for Cursor — If
.cursor/mcp.jsonexists in the project or home directory, add to that file:{ "mcpServers": { "outlit": { "url": "https://mcp.outlit.ai/mcp", "headers": { "Authorization": "Bearer API_KEY" } } } } -
Check for Claude Desktop — If
claude_desktop_config.jsonexists at~/Library/Application Support/Claude/(macOS) or%APPDATA%/Claude/(Windows), add to that file:{ "mcpServers": { "outlit": { "url": "https://mcp.outlit.ai/mcp", "headers": { "Authorization": "Bearer API_KEY" } } } }
Ask the user for their API key if not provided. Replace API_KEY with the actual key.
Verify Connection
Call outlit_schema to confirm the connection is working.
Tool Reference
outlit_list_customers
Filter and paginate customers.
| Key Params | Values |
|---|---|
billingStatus | NONE, TRIALING, PAYING, CHURNED |
hasActivityInLast / noActivityInLast | 7d, 14d, 30d, 90d (mutually exclusive) |
mrrAbove / mrrBelow | cents (10000 = $100) |
search | name or domain |
orderBy | last_activity_at, first_seen_at, name, mrr_cents |
limit | 1-1000 (default: 20) |
cursor | pagination token |
outlit_list_users
Filter and paginate users.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-leo-paz-outlit-mcp": {
"enabled": true,
"auto_update": true
}
}
}