Skip to main content

payout-balance-report

Reports Stripe balance, available/pending funds, payouts, and cash flow. Use when the user asks "Stripe balance", "payouts", "how much money in Stripe", or "when do we get paid".

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
payout-balance-report
description
Reports Stripe balance, available/pending funds, payouts, and cash flow. Use when the user asks "Stripe balance", "payouts", "how much money in Stripe", or "when do we get paid".
metadata
{"version":"1.0.0"}
# Payout & Balance Report ## 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. `GetBalance` — available vs pending per currency 2. `GetPayouts` — recent `limit: 20`, status `paid` / `in_transit` / `failed` 3. `GetBalanceTransactions` — last 30d summary (charges, fees, refunds) ## Output Template ``` Balance Snapshot Available: $[X] Pending: $[Y] Recent payouts: | Date | Amount | Status | Arrival | Net last 30d (after fees): $[Z] ```
Ver en GitHub