Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_get_position

Retrieve a 7-day financial summary including balances, cash flow, health score, and open discrepancies to analyze financial position and detect issues.

Instructions

Get a 7-day financial summary designed for AI agents. Returns balances, payout counts, cash flow, health score, and open discrepancies in a single call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the flowcheck_get_position tool, which fetches data from the /agent/position endpoint.
    async () => {
      const result = await client.request("GET", "/agent/position");
      return { content: [{ type: "text" as const, text: result }] };
    },
  • Tool registration for flowcheck_get_position within the registerAgentTools function.
    server.registerTool(
      "flowcheck_get_position",
      {
        title: "Financial Position",
        description:
          "Get a 7-day financial summary designed for AI agents. " +
          "Returns balances, payout counts, cash flow, health score, " +
          "and open discrepancies in a single call.",
        inputSchema: z.object({}),
      },
      async () => {
        const result = await client.request("GET", "/agent/position");
        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