flowcheck_get_reconciliation
Retrieve detailed reconciliation for a Stripe payout, showing confidence score breakdown and matched bank transaction data.
Instructions
Get detailed reconciliation for a specific payout. Shows confidence score breakdown (amount, date, description, bank ID) and the matched bank transaction.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| payout_id | Yes | Stripe payout ID |
Implementation Reference
- src/tools/reconciliation.ts:25-44 (handler)The handler for the 'flowcheck_get_reconciliation' tool is registered and implemented within the registerReconciliationTools function in src/tools/reconciliation.ts.
server.registerTool( "flowcheck_get_reconciliation", { title: "Reconciliation Detail", description: "Get detailed reconciliation for a specific payout. " + "Shows confidence score breakdown (amount, date, description, bank ID) " + "and the matched bank transaction.", inputSchema: z.object({ payout_id: z.string().describe("Stripe payout ID"), }), }, async ({ payout_id }) => { const result = await client.request( "GET", `/reconcile/${payout_id}`, ); return { content: [{ type: "text" as const, text: result }] }; }, );