flowcheck_create_plaid_link_token
Generate a Plaid Link token to securely connect bank accounts in web applications, enabling financial data access for workflow validation.
Instructions
Create a Plaid Link token to initiate bank connection in the browser. Use the returned link_token with the Plaid Link SDK.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/connect.ts:56-64 (registration)Registration of the tool "flowcheck_create_plaid_link_token" in src/tools/connect.ts.
server.registerTool( "flowcheck_create_plaid_link_token", { title: "Create Plaid Link Token", description: "Create a Plaid Link token to initiate bank connection in the browser. " + "Use the returned link_token with the Plaid Link SDK.", inputSchema: z.object({}), }, - src/tools/connect.ts:65-70 (handler)The handler implementation for the "flowcheck_create_plaid_link_token" tool.
async () => { const result = await client.request( "POST", "/connect/plaid/link-token", ); return { content: [{ type: "text" as const, text: result }] };