Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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 }] };
    },
  • 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 }] };
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eliaskress/flow-check-financial-api-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server