Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_list_transactions

Retrieve bank transactions from Plaid with date filtering and pagination. Deposits appear as negative amounts for financial analysis.

Instructions

List bank transactions from Plaid. Deposits appear as negative amounts. Filter by date range. Paginated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromNoStart date filter (YYYY-MM-DD)
toNoEnd date filter (YYYY-MM-DD)
limitNoResults per page (default 50, max 100)
cursorNoPagination cursor from previous response

Implementation Reference

  • The registration and handler logic for "flowcheck_list_transactions".
    server.registerTool(
      "flowcheck_list_transactions",
      {
        title: "List Transactions",
        description:
          "List bank transactions from Plaid. " +
          "Deposits appear as negative amounts. " +
          "Filter by date range. Paginated.",
        inputSchema: z.object({
          from: z
            .string()
            .optional()
            .describe("Start date filter (YYYY-MM-DD)"),
          to: z
            .string()
            .optional()
            .describe("End date filter (YYYY-MM-DD)"),
          limit: z
            .number()
            .min(1)
            .max(100)
            .optional()
            .describe("Results per page (default 50, max 100)"),
          cursor: z
            .string()
            .optional()
            .describe("Pagination cursor from previous response"),
        }),
      },
      async (params) => {
        const result = await client.request("GET", "/transactions", { params });
        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