Behavioral analytics and customer engagement platform.
## Kissmetrics MCP Server: Behavioral Analytics The **Kissmetrics MCP Server** brings person-centric behavioral analytics into Google Antigravity, enabling developers to track individual user journeys and understand how behavior impacts business outcomes through AI-assisted analysis. ### Why Kissmetrics MCP? - **Person-Centric Tracking**: Follow individual users across devices and sessions - **Revenue Attribution**: Connect user behavior directly to revenue and business outcomes - **Cohort Analysis**: Compare behavior patterns across different user segments - **Automated Reports**: Generate and schedule reports on key metrics and trends - **A/B Test Analysis**: Measure the impact of experiments on user behavior and conversions ### Key Features #### 1. User Behavior Tracking ```javascript // Track user events with properties await kissmetrics.record({ person: userEmail, event: "Completed Purchase", properties: { "Order Value": 149.99, "Products": 3, "Discount Code": "SUMMER20", "Payment Method": "credit_card" } }); // Set user properties await kissmetrics.set({ person: userEmail, properties: { "Plan Type": "Enterprise", "Lifetime Value": 2499.99, "Account Created": "2024-01-15" } }); ``` #### 2. Funnel and Revenue Analysis ```javascript // Analyze conversion funnels const funnelReport = await kissmetrics.funnel({ steps: [ "Viewed Pricing Page", "Started Free Trial", "Activated Account", "Upgraded to Paid" ], dateRange: { start: "2024-10-01", end: "2024-12-31" }, segmentBy: "Acquisition Source" }); // Revenue attribution const revenueReport = await kissmetrics.revenue({ groupBy: "Campaign", dateRange: "last_90_days", metrics: ["total_revenue", "average_order_value", "customers"] }); ``` ### Configuration ```json { "mcpServers": { "kissmetrics": { "command": "npx", "args": ["-y", "@anthropic/mcp-kissmetrics"], "env": { "KISSMETRICS_API_KEY": "your-api-key", "KISSMETRICS_PRODUCT_TOKEN": "your-product-token" } } } } ``` ### Use Cases **Customer Journey Optimization**: Map complete customer journeys to identify friction points and optimization opportunities. **Marketing Attribution**: Understand which campaigns and channels drive the most valuable customers. **SaaS Metrics**: Track trial-to-paid conversions, churn indicators, and expansion revenue by cohort. The Kissmetrics MCP Server connects user behavior to business outcomes, enabling data-driven product decisions.
{
"mcpServers": {
"kissmetrics": {}
}
}