Fintoc Model Context Protocol server

This page explains how to connect Cursor, Windsurf, and Claude Desktop to the Fintoc Model Context Protocol (MCP) server. After you connect your AI development tool, the tool can read the Fintoc documentation and your account data. For the endpoints the MCP server ultimately calls, see the API reference.

What is MCP?

MCP is an open standard that lets an AI development tool securely access external data sources and tools. The Fintoc MCP server lets your AI development tool:

  • Call the Fintoc API on your behalf.
  • Search the Fintoc documentation.
  • Read live data from your Fintoc account.
  • Generate code for Fintoc integrations.

Set up the Fintoc MCP server

Fintoc hosts a remote MCP server at https://docs.fintoc.com/mcp. Configure your AI development tool with the settings below. To read account data, add Authorization: YOUR_FINTOC_SECRET_KEY using the header configuration for your AI development tool.

Add to ~/.cursor/mcp.json:

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

Test your MCP setup

After you configure the server, test the connection:

  1. Open your AI development tool (Cursor, Windsurf, or Claude Desktop).
  2. Start a new chat with the AI development tool.
  3. Ask about Fintoc: try one of these questions:
    • "How do I create a checkout session with Fintoc?"
    • "Show me an example of listing transfers."
    • "Generate code to accept a one-time payment with Fintoc."

Your AI development tool now has access to your Fintoc account data and documentation through the MCP server.