Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_get_registration_status

Check registration status and retrieve your API key after completing the FlowCheck checkout process. This tool verifies registration and provides the API key once.

Instructions

Check registration status and retrieve the API key after checkout. The API key is only returned once. No API key required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYesRegistration token from flowcheck_register

Implementation Reference

  • The tool 'flowcheck_get_registration_status' is registered and implemented within the 'registerAuthTools' function. It takes a registration token as input and makes an authenticated (or no-auth) request to the '/auth/register/status' endpoint via the FlowCheck client.
    server.registerTool(
      "flowcheck_get_registration_status",
      {
        title: "Registration Status",
        description:
          "Check registration status and retrieve the API key after checkout. " +
          "The API key is only returned once. No API key required.",
        inputSchema: z.object({
          token: z
            .string()
            .describe("Registration token from flowcheck_register"),
        }),
      },
      async ({ token }) => {
        const result = await client.request("GET", "/auth/register/status", {
          params: { token },
          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