Model Context Protocol (MCP)

Let your AI agents interact with the Fintoc API by using our MCP server.

The Fintoc Model Context Protocol (MCP) server provides a set of tools that AI agents can use to interact with the Fintoc API and search our knowledge base (including documentation).

Connect to Fintoc's MCP Server (Beta)

Add the following to your \~/.cursor/mcp.json file. To learn more, see the Cursor documentation.

{
  "mcpServers": {
    "fintoc": {
      "url": "https://mcp.fintoc.com"
    }
  }
}

When the client opens the connection, Fintoc shows a consent screen. Authorize on the consent screen and pick test or live. A token operates in one mode at a time.

Tools

The server exposes the following MCP tools. We recommend enabling human confirmation of tools and exercising caution when using the Fintoc MCP with other servers to avoid prompt injection attacks. If you have feedback or want to see more tools, email us at [email protected].

ResourceToolAPI
Payment Intentlist_payment_intentsList payment intents
Customerlist_customersList customers
Customercreate_customerCreate customer
Invoicelist_invoicesList invoices
Checkout Sessionlist_checkout_sessionsList checkout sessions
Checkout Sessioncreate_checkout_sessionCreate checkout session
Linklist_linksList links
Webhook Endpointlist_webhook_endpointsList webhook endpoints
Payoutlist_payoutsList payouts
Accountlist_accountsList accounts
Account Numberlist_account_numbersList account numbers
Account Numbercreate_account_numberCreate account number
Transferlist_transfersList transfers
Entitylist_entitiesList entities
Generalfetch_resourcePolymorphic lookup of any Fintoc resource by its hashid
GeneralfeedbackReport a blocker or unexpected behavior back to the Fintoc team

Connect to the Fintoc Docs MCP server

The docs server lets an agent answer questions about the Fintoc API by querying the documentation. Use it when you want code samples, endpoint lookups, or explanations without leaving your editor.

Add the following to your \~/.cursor/mcp.json file. To learn more, see the Cursor documentation.

{
  "mcpServers": {
    "fintoc-docs": {
      "url": "https://docs.fintoc.com/mcp"
    }
  }
}