flowcheck_get_reconciliation_summary
Retrieve a 30-day reconciliation health summary including matched/unmatched transaction counts, total amounts, and open discrepancies for financial process validation.
Instructions
Get 30-day reconciliation health score. Returns matched/unmatched counts, total amounts, and number of open discrepancies.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/reconciliation.ts:19-22 (handler)The handler function for flowcheck_get_reconciliation_summary that performs the API request to fetch the reconciliation summary.
async () => { const result = await client.request("GET", "/reconcile/summary"); return { content: [{ type: "text" as const, text: result }] }; }, - src/tools/reconciliation.ts:9-23 (registration)The registration call for the flowcheck_get_reconciliation_summary tool within the MCP server.
server.registerTool( "flowcheck_get_reconciliation_summary", { title: "Reconciliation Summary", description: "Get 30-day reconciliation health score. " + "Returns matched/unmatched counts, total amounts, " + "and number of open discrepancies.", inputSchema: z.object({}), }, async () => { const result = await client.request("GET", "/reconcile/summary"); return { content: [{ type: "text" as const, text: result }] }; }, );