Building with AI
Use AI tools in your Fintoc integration workflow.
You can use AI to assist in the building of your Fintoc integration. In this guide we provide a set of tools and best practices for you to use AI to accelerate development.
Ask AI dropdown

You can ask your favorite AI tool directly within our documentation using the Ask AI dropdown. Look for the AI menu icon on any of our guide pages to reveal a suite of AI-powered tools that help you understand our API, generate code examples, and get immediate answers to your questions.
Plain text docs
You can also use the dropdown to easily copy any documentation page in markdown format, making it simple to paste into other AI tools, IDEs, or documents while preserving formatting.
This helps AI tools and agents consume our content and allows you to copy and paste the entire contents of a doc into an LLM. This format is preferable to scraping or copying from our HTML and JavaScript-rendered pages because:
- Plain text contains fewer formatting tokens.
- Content that isnโt rendered in the default view (for example, itโs hidden in a tab) of a given page is rendered in the plain text version.
- LLMs can parse and understand markdown hierarchy.
LLMS.txt
We also host an /llms.txt file which instructs AI tools and agents how to retrieve the plain text versions of our pages. The /llms.txt file
is an emerging standard for making websites and content more accessible to LLMs.
Model Context Protocol (MCP)
The Fintoc Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Claude Code, plus general-purpose tools like Claude Desktop, to interact directly with Fintoc's documentation.
What is MCP?
Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Fintoc MCP server provides AI agents with:
- A deep understanding of the Fintoc API
- Documentation search capabilities
- Code generation assistance to integrate with Fintoc
Fintoc MCP Server Setup
Fintoc hosts a remote MCP server at https://docs.fintoc.com/mcp
. Configure your AI development tools to connect to this server.
Click here to open Cursor and automatically add the Fintoc MCP. Alternatively, add the following to your to~/.cursor/mcp.json
. To learn more, see the Cursor documentation.
{
"mcpServers": {
"fintoc": {
"url": "https://docs.fintoc.com/mcp"
}
}
}
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, VS Code, etc.)
- Start a new chat with the AI assistant
- Ask about Fintoc - try questions like:
- "Muestrame un ejemplo para crear un Checkout Session en Python usando la API de Fintoc"
- "Crea una JWS Signature para la API de Fintoc en Java"
- "Quรฉ endpoint puedo usar para cancelar un refund en Fintoc?"
The AI should now have access to the Fintoc documentation through the MCP server.
Updated 7 days ago