Skip to main content

revenue-forecasting

Projects future MRR, ARR, and revenue run-rate from current Stripe subscription trends, new-sub velocity, and churn. Use when the user asks "revenue forecast", "MRR projection", "where will we be in 6 months", "ARR run-rate", or "growth trajectory". For current MRR only, see mrr-arr-snapshot.

Jump to install

Source facts

Repository
appeeky/stripe-skills
Last source activity
July 19, 2026 at 10:10
Detected SKILL.md language
English
Stars
5
Forks
1

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
revenue-forecasting
description
Projects future MRR, ARR, and revenue run-rate from current Stripe subscription trends, new-sub velocity, and churn. Use when the user asks "revenue forecast", "MRR projection", "where will we be in 6 months", "ARR run-rate", or "growth trajectory". For current MRR only, see mrr-arr-snapshot.
metadata
{"version":"1.0.0"}
# Revenue Forecasting ## Stripe MCP Setup Requires **Stripe MCP** (https://docs.stripe.com/mcp). `GetMcpTools` before `CallMcpTool`. Paginate all lists (`limit: 100`, `starting_after` while `has_more`). Amounts in **cents**. Read-only for audits; confirm before writes. ## Inputs to gather 1. Current MRR (via `mrr-arr-snapshot` logic) 2. New subs / month — count `active` subs created in last 30/60/90d (`created` filter) 3. Monthly churn % (via `churn-analysis`) 4. Avg new MRR per sub ## Model (simple) ``` Next month MRR = current_MRR * (1 - churn_rate) + new_MRR_added ``` Project 3/6/12 months. Show best / base / worst (churn +/-2pp, growth +/-20%). ## Output Template ``` Revenue Forecast (base case) Current MRR: $[X] | Monthly growth: [+X%] | Churn: [X%] | Month | MRR (worst) | MRR (base) | MRR (best) | |-------|-------------|------------|------------| | +3 | | | | | +6 | | | | | +12 | | | | ARR run-rate (12mo base): $[X] Key assumption risks: [list] ``` State all assumptions explicitly. Forecast quality degrades past 6 months.
View on GitHub