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].
| Resource | Tool | API |
|---|---|---|
| Payment Intent | list_payment_intents | List payment intents |
| Customer | list_customers | List customers |
| Customer | create_customer | Create customer |
| Invoice | list_invoices | List invoices |
| Checkout Session | list_checkout_sessions | List checkout sessions |
| Checkout Session | create_checkout_session | Create checkout session |
| Link | list_links | List links |
| Webhook Endpoint | list_webhook_endpoints | List webhook endpoints |
| Payout | list_payouts | List payouts |
| Account | list_accounts | List accounts |
| Account Number | list_account_numbers | List account numbers |
| Account Number | create_account_number | Create account number |
| Transfer | list_transfers | List transfers |
| Entity | list_entities | List entities |
| General | fetch_resource | Polymorphic lookup of any Fintoc resource by its hashid |
| General | 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"
}
}
}Updated about 4 hours ago