npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stackcurious/revenuecat-charts-mcp

v1.0.0

Published

MCP server for RevenueCat Charts API — give your AI agent subscription analytics

Downloads

16

Readme

revenuecat-charts-mcp

An MCP server that gives AI agents access to RevenueCat's Charts & Metrics API. Query MRR, churn, trial conversion, revenue, and 17 more subscription metrics — directly from Claude, Cursor, or any MCP client.

RevenueCat's official MCP server has 26 tools for project configuration. This server fills the gap: analytics.

Why

Your AI agent can configure RevenueCat projects via MCP. But it can't check if those changes are working. That's like giving an agent a steering wheel but no dashboard.

This server gives agents eyes on the data.

Tools

| Tool | Description | |------|-------------| | rc_get_overview | Snapshot of MRR, active subs, trials, revenue, new customers, active users | | rc_get_chart | Query any of 21 chart types with filters, segments, date ranges | | rc_get_chart_options | Discover available filters, segments, and resolutions for a chart | | rc_health_check | Comprehensive health report: MRR + churn trend + trial conversion + signals | | rc_compare_periods | Compare any metric across two time periods with deltas and % changes |

Available Charts

actives · actives_movement · actives_new · arr · churn · cohort_explorer · conversion_to_paying · customers_new · customers_active · ltv_per_customer · ltv_per_paying_customer · mrr · mrr_movement · refund_rate · revenue · subscription_retention · subscription_status · trials · trials_movement · trials_new · trial_conversion_rate

Setup

1. Install

npm install -g revenuecat-charts-mcp

2. Configure your MCP client

Claude Code:

claude mcp add revenuecat-charts -- env REVENUECAT_API_KEY=sk_your_key_here npx revenuecat-charts-mcp

Claude Desktop / Cursor / Windsurf — add to your MCP config:

{
  "mcpServers": {
    "revenuecat-charts": {
      "command": "npx",
      "args": ["revenuecat-charts-mcp"],
      "env": {
        "REVENUECAT_API_KEY": "sk_your_key_here"
      }
    }
  }
}

3. Use it

Ask your AI agent:

  • "Give me a health check on my subscription app"
  • "Show me my MRR trend for the last 3 months"
  • "Compare my churn rate this month vs last month"
  • "What's my trial conversion rate broken down by store?"

Example Output

Health Check

# Subscription Health Report

*Generated 2026-04-03*

## Current Snapshot

**MRR**: $4,555
**Active Subscriptions**: 2,534
**Active Trials**: 77
**Revenue (28d)**: $4,712
**New Customers (28d)**: 1,516
**Active Users (28d)**: 13,702
**ARPU**: $1.80/mo
**Trial Pipeline**: 2.9% of active base in trial

## Churn Trend (Monthly)
**Current**: 6.98%
**Prior month**: 6.67%
**Trend**: increasing

## Health Signals
- Churn between 5-10% — monitor closely
- Trial conversion 25-50% — room to optimize
- Strong acquisition — new customers > 10% of base

Period Comparison

# MRR — Period Comparison

**Period A**: 2026-02-01 → 2026-02-28
**Period B**: 2026-03-01 → 2026-03-31

**MRR**: $4,561.94 → $4,541.72 (↓ 0.4%)

Rate Limiting

The RevenueCat Charts API has a rate limit of ~5 requests/minute. This server includes built-in rate limiting with automatic queuing — you don't need to worry about it.

Requirements

  • Node.js 18+
  • A RevenueCat secret API key (sk_...) with Charts & Metrics permissions

API Key

Get your API key from RevenueCat Dashboard → Project Settings → API Keys. Create a secret key with charts_metrics:overview:read and charts_metrics:charts:read permissions.

Built by

Q — an AI agent orchestration platform. This server was built as part of Q's application for RevenueCat's Agentic AI Advocate role.

License

MIT