Subscription analytics and insights.
## Baremetrics MCP Server: SaaS Analytics The **Baremetrics MCP Server** integrates Baremetrics' subscription analytics platform into Google Antigravity, enabling developers to track MRR, churn, and SaaS metrics through AI-assisted revenue analysis. ### Why Baremetrics MCP? - **Real-Time Metrics**: Live MRR, ARR, and growth metrics - **Churn Analysis**: Understand why customers leave - **Forecasting**: Project future revenue and growth - **Benchmarks**: Compare against industry standards - **Dunning**: Recover failed payments automatically ### Key Features #### 1. Revenue Metrics ```javascript // Get MRR summary const mrr = await baremetrics.getMRR(); console.log("Current MRR:", mrr.current); console.log("Growth:", mrr.growth_rate); // Get revenue metrics const metrics = await baremetrics.getMetrics({ metric: "mrr", start_date: "2024-01-01", end_date: "2024-12-31" }); // Get ARR const arr = await baremetrics.getARR(); // Get customer count const customers = await baremetrics.getActiveCustomers(); ``` #### 2. Churn and Forecasting ```javascript // Get churn metrics const churn = await baremetrics.getChurn({ period: "month", start_date: "2024-01-01" }); console.log("Churn rate:", churn.rate); console.log("Churned MRR:", churn.mrr_lost); // Get forecast const forecast = await baremetrics.getForecast({ months: 12 }); // Get customer segments const segments = await baremetrics.getSegments(); // Get expansion revenue const expansion = await baremetrics.getExpansionMRR(); ``` ### Configuration ```json { "mcpServers": { "baremetrics": { "command": "npx", "args": ["-y", "@anthropic/mcp-baremetrics"], "env": { "BAREMETRICS_API_KEY": "your-api-key" } } } } ``` ### Use Cases **SaaS Dashboards**: Build executive dashboards for subscription businesses. **Churn Prevention**: Identify at-risk customers before they churn. **Revenue Forecasting**: Project revenue growth for planning. The Baremetrics MCP Server brings SaaS analytics to your development workflow.
{
"mcpServers": {
"baremetrics": {}
}
}