Skip to main content

financial-reconciliation

Reconciles Stripe payouts to bank deposits and breaks down balance transactions -- gross, fees, refunds, net. Use when the user mentions "reconciliation", "payout doesn't match bank", "Stripe fees", "balance transactions", or "where did the money go". For balance snapshot only, see payout-balance-report.

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
financial-reconciliation
description
Reconciles Stripe payouts to bank deposits and breaks down balance transactions -- gross, fees, refunds, net. Use when the user mentions "reconciliation", "payout doesn't match bank", "Stripe fees", "balance transactions", or "where did the money go". For balance snapshot only, see payout-balance-report.
metadata
{"version":"1.0.0"}
# Financial Reconciliation ## 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. ## Workflow 1. `GetPayouts` -- target payout(s) with amount + arrival date 2. `GetBalanceTransactions` filtered by `payout` -- the transactions that composed it 3. Break down: gross charges - Stripe fees - refunds - adjustments = net payout ## Fee Analysis Sum `fee` across balance transactions; compute effective % of gross. ## Output Template ``` Payout Reconciliation -- [payout_id] Arrival: [date] | Net paid: $[X] Composition: | Type | Count | Gross | Fees | Net | |------|-------|-------|------|-----| | Charges | | | | | | Refunds | | | | | | Adjustments | | | | | Effective Stripe fee: [X]% of gross Bank match: [reconciled / discrepancy $Y] ``` Flag discrepancies between payout net and expected bank deposit.
Ver en GitHub