Skip to main content

pricing-products-audit

Maps Stripe products and prices — plans, intervals, amounts, active vs archived, and which prices appear on live subscriptions. Use when the user asks "what products do we sell", "price IDs", "pricing tiers", "plan structure", or "where does revenue go".

Ir a la instalación

Datos de origen

Repositorio
appeeky/stripe-skills
Última actividad en el origen
19 de julio de 2026 a las 10:10
Idioma detectado de SKILL.md
inglés
Estrellas
5
Forks
1

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
pricing-products-audit
description
Maps Stripe products and prices — plans, intervals, amounts, active vs archived, and which prices appear on live subscriptions. Use when the user asks "what products do we sell", "price IDs", "pricing tiers", "plan structure", or "where does revenue go".
metadata
{"version":"1.0.0"}
# Pricing & Products Audit ## Stripe MCP Setup Requires **Stripe MCP** connected via OAuth or restricted key. Docs: https://docs.stripe.com/mcp 1. `GetMcpTools` with `server: "user-Stripe"` (or `plugin-stripe-stripe`) before any call 2. Prefer `stripe_api_search` → `stripe_api_details` → `stripe_api_read` for list/retrieve 3. **Always paginate** — `limit: 100`, follow `has_more` with `starting_after` 4. Amounts are in **cents** unless noted 5. Never expose secret keys in output ## Workflow 1. `GetProducts` — `active: true`, `limit: 100` 2. `GetPrices` — `active: true`, `type: recurring`, `limit: 100` 3. `GetSubscriptions` — `status: active` — count subs per `price.id` 4. Flag: - Orphan prices (no active subs) - Legacy prices still in use - Annual vs monthly mix ## Output Template ``` Product Catalog | Product | Price ID | Amount | Interval | Active subs | MRR share | |---------|----------|--------|----------|-------------|-----------| Legacy / unused prices: [list] Recommendation: [consolidate / archive / migrate] ```
Ver en GitHub