Model Context Protocol (MCP)

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 Fintoc's knowledge base (including documentation).

Before you connect, you need an active Fintoc account (test or live) and a supported client: Cursor, VS Code, Claude Code, or ChatGPT.

Connect to Fintoc's MCP server

Custom connectors work on Claude (web, desktop, mobile, and Cowork) on every plan — Free, Pro, Max, Team, and Enterprise. For configuration options, see the Claude documentation.

Team / Enterprise:

  1. An Owner must add it first in Organization settings → Connectors (Add → Custom → Web).

  2. Go to Customize → Connectors.

  3. Find the Fintoc custom connector added by your the Owner and click Connect.

Pro / Max / Free:

  1. Go to Customize → Connectors.

  2. Click "+" then Add custom connector.

  3. Enter the server url https://mcp.fintoc.com.

  4. Click Add, then connect and authenticate via OAuth.

Enable per conversation via the "+" button in chat → Connectors.

When the client opens the connection, Fintoc shows a consent screen. Authorize on the consent screen and pick the scopes you want to grant to your MCP session. A token operates in live mode only.

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 Fintoc's team at [email protected].

ResourceToolRequired permissionAPI
Accountlist_accountsaccount:viewList accounts
Account Numberlist_account_numbersaccount_number:viewList account numbers
Account Numbercreate_account_numberaccount_number:manageCreate account number
Checkout Sessionlist_checkout_sessionspayment:viewList checkout sessions
Customerlist_customerscustomer:viewList customers
Customercreate_customercustomer:createCreate customer
Entitylist_entitiesentity:viewList entities
Invoicelist_invoicesbilling:viewList invoices
Linklist_linkslink:viewList links
Payment Intentlist_payment_intentspayment:viewList payment intents
Payoutlist_payoutspayout:viewList payouts
Refundlist_refundsrefund:viewList refunds
Refundcreate_refundrefund:manageCreate refund
Refundcancel_refundrefund:manageCancel refund
Transferlist_transferstransfer:viewList transfers
Webhook Endpointlist_webhook_endpointswebhook_endpoint:viewList webhook endpoints

Other tools

  • fetch_resource: Polymorphic lookup of any Fintoc resource by its id
  • feedback: Report 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"
    }
  }
}