Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_exchange_plaid_token

Exchange a Plaid public token for permanent API access after completing the Plaid Link authentication flow.

Instructions

Exchange a Plaid public token (from Link) for permanent access. Call this after the user completes Plaid Link in the browser.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
public_tokenYesPlaid public token from the Link flow

Implementation Reference

  • The implementation of the 'flowcheck_exchange_plaid_token' tool handler within registerConnectTools. It accepts a 'public_token' and makes a POST request to '/connect/plaid/exchange' using the FlowCheckClient.
    server.registerTool(
      "flowcheck_exchange_plaid_token",
      {
        title: "Exchange Plaid Token",
        description:
          "Exchange a Plaid public token (from Link) for permanent access. " +
          "Call this after the user completes Plaid Link in the browser.",
        inputSchema: z.object({
          public_token: z
            .string()
            .describe("Plaid public token from the Link flow"),
        }),
      },
      async ({ public_token }) => {
        const result = await client.request("POST", "/connect/plaid/exchange", {
          body: { public_token },
        });
        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