Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_register

Create a new FlowCheck account to access workflow analysis tools for detecting issues and validating financial processes. Returns a registration token and checkout URL.

Instructions

Create a new FlowCheck account. Returns a registration token and checkout URL. No API key required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesEmail address for the new account

Implementation Reference

  • The implementation of the 'flowcheck_register' tool handler and registration within the registerAuthTools function.
    server.registerTool(
      "flowcheck_register",
      {
        title: "Register Account",
        description:
          "Create a new FlowCheck account. Returns a registration token and checkout URL. " +
          "No API key required.",
        inputSchema: z.object({
          email: z.string().email().describe("Email address for the new account"),
        }),
      },
      async ({ email }) => {
        const result = await client.request("POST", "/auth/register", {
          body: { email },
          noAuth: true,
        });
        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