Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_connect_stripe

Connect a Stripe account to FlowCheck Financial API using a restricted API key with read access to Payouts and Balance. The key is encrypted with AES-256-GCM for secure integration.

Instructions

Connect a Stripe account using a restricted API key. The key must have read access to Payouts and Balance. FlowCheck encrypts it with AES-256-GCM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
restricted_keyYesStripe restricted API key (rk_live_... or rk_test_...)

Implementation Reference

  • Handler for the flowcheck_connect_stripe tool, which sends a request to the /connect/stripe endpoint.
    async ({ restricted_key }) => {
      const result = await client.request("POST", "/connect/stripe", {
        body: { restricted_key },
      });
      return { content: [{ type: "text" as const, text: result }] };
    },
  • Input schema definition for the flowcheck_connect_stripe tool.
    inputSchema: z.object({
      restricted_key: z
        .string()
        .describe("Stripe restricted API key (rk_live_... or rk_test_...)"),
    }),
  • Registration of the flowcheck_connect_stripe tool within the McpServer.
    server.registerTool(
      "flowcheck_connect_stripe",
      {
        title: "Connect Stripe",
        description:
          "Connect a Stripe account using a restricted API key. " +
          "The key must have read access to Payouts and Balance. " +
          "FlowCheck encrypts it with AES-256-GCM.",
        inputSchema: z.object({
          restricted_key: z
            .string()
            .describe("Stripe restricted API key (rk_live_... or rk_test_...)"),
        }),
      },
      async ({ restricted_key }) => {
        const result = await client.request("POST", "/connect/stripe", {
          body: { restricted_key },
        });
        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