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".

الانتقال إلى التثبيت

معلومات المصدر

المستودع
appeeky/stripe-skills
آخر نشاط في المصدر
١٩ يوليو ٢٠٢٦ في ١٠:١٠
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٥
التفرعات
١

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
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] ```
عرض على GitHub