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
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address for the new account |
Implementation Reference
- src/tools/auth.ts:9-27 (handler)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 }] }; }, );