Subscription financial metrics and analytics.
## ProfitWell MCP Server: Subscription Analytics The **ProfitWell MCP Server** integrates ProfitWell's subscription analytics platform into Google Antigravity, enabling developers to track MRR, churn, and revenue metrics through AI-assisted SaaS analytics. ### Why ProfitWell MCP? - **Free Analytics**: Core metrics free forever - **Accurate Data**: Real-time subscription metrics - **Benchmarking**: Compare against industry standards - **Churn Analysis**: Understand why customers leave - **Pricing Intelligence**: Optimize pricing strategy ### Key Features #### 1. Revenue Metrics ```javascript // Get MRR const mrr = await profitwell.getMRR({ date: "2024-12-31" }); console.log("MRR:", mrr.value); console.log("Growth:", mrr.growth_rate); // Get revenue over time const revenue = await profitwell.getMetrics({ metric: "mrr", startDate: "2024-01-01", endDate: "2024-12-31", resolution: "monthly" }); // Get ARR const arr = await profitwell.getARR(); // Get LTV const ltv = await profitwell.getLTV({ segment: "enterprise" }); ``` #### 2. Churn and Growth Metrics ```javascript // Get churn rate const churn = await profitwell.getChurn({ metric: "mrr_churn_rate", period: "monthly" }); console.log("Churn Rate:", churn.value); // Get expansion MRR const expansion = await profitwell.getExpansionMRR(); // Get net revenue retention const nrr = await profitwell.getNetRevenueRetention(); // Get cohort analysis const cohorts = await profitwell.getCohortAnalysis({ startDate: "2024-01-01", metric: "retention" }); ``` ### Configuration ```json { "mcpServers": { "profitwell": { "command": "npx", "args": ["-y", "@anthropic/mcp-profitwell"], "env": { "PROFITWELL_API_KEY": "your-api-key" } } } } ``` ### Use Cases **SaaS Metrics**: Track core subscription business metrics. **Investor Reporting**: Generate accurate revenue reports. **Churn Prevention**: Identify and address churn drivers. The ProfitWell MCP Server brings subscription analytics to your workflow.
{
"mcpServers": {
"profitwell": {}
}
}