
This guide walks you through connecting Cursor to the Finix MCP server. After setup, you can ask Cursor questions about Finix and get accurate answers from our documentation inside your editor.
Before you begin, make sure you have:
- Cursor Pro plan or above - MCP is not available on the free Hobby plan.
- Internet connection - Required to reach docs.finix.com.
If you don't have Cursor installed yet, download it from the official Cursor website and follow the installation instructions for your platform.
Add the Finix MCP server using the Cursor user interface or by editing the MCP configuration file.
- Open Cursor Settings (Cmd / Ctrl + Shift + J on Mac, or click the gear icon).
- Navigate to Tools & MCP.
- Click + Add new MCP server.
- Enter the following details:
- Name:
finix-redocly-mcp - URL:
https://docs.finix.com/mcp
- Name:
- The server appears in the MCP list with a green status indicator when connected.
Create or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"finix-redocly-mcp": {
"url": "https://docs.finix.com/mcp"
}
}
}Cursor has detected the configuration update. No restart is required.
The Finix MCP server's search tool finds results in both the API Reference and Guides. Detailed retrieval tools (get-endpoint-info, get-endpoints, get-full-spec-document) are only available in the API Reference. See Enhancing Guide Access to configure the agent for full access to the Finix documentation.
The MCP server can search guides but lacks a tool to retrieve their full content. To give Cursor full access to both API docs and guides, add the following to your project's Cursor rules (.cursor/rules file) or system prompt:
## Finix Documentation Access
When answering questions about Finix:
1. Use the Finix MCP server tools (`search`, `get-endpoint-info`, `get-endpoints`) to find relevant API reference content.
2. For guide/tutorial content: after using the MCP `search` tool to find relevant guide pages, fetch the full content by appending `.md` to the guide URL. For example:
- `https://docs.finix.com/guides/getting-started/developer-quickstart.md`
- `https://docs.finix.com/guides/online-payments/payment-tokenization/tokenization-forms.md`
- `https://docs.finix.com/guides/payouts/adding-funds.md`
3. Always check both API Reference and Guides for a complete answer.This lets Cursor access Markdown guides and API references via MCP, ensuring full access to Finix docs.
After adding the MCP server, verify it is working:
- Open Cursor Settings (Cmd / Ctrl + Shift + J).
- Navigate to Tools & MCP.
- Confirm
finix-redocly-mcpshows a green status indicator.
Open a Cursor chat session and ask a question about Finix.
"What authentication method does the Finix API use?"
If Cursor responds with specific details about Finix API authentication (Basic Auth with API credentials), the connection is working.
"How do I onboard a seller on Finix?"
If Cursor responds with details from the seller onboarding guide (not just API endpoint info), guide access is working correctly.
To share the Finix MCP server with your team, add the following MCP configuration to your project and commit it to your repo:
{
"mcpServers": {
"finix-redocly-mcp": {
"url": "https://docs.finix.com/mcp"
}
}
}This makes the MCP server available to anyone who opens the project in Cursor.
Make the Finix MCP server available across all your projects by adding the MCP configuration to your home directory:
{
"mcpServers": {
"finix-redocly-mcp": {
"url": "https://docs.finix.com/mcp"
}
}
}Enable or disable the Finix MCP server from Settings > Tools & MCP without deleting the configuration. This lets you disable the server temporarily without losing your setup.
Once configured, Cursor uses the MCP server when you ask Finix-related questions in chat or via the agent.
API Questions:
"What fields are required to create a Transfer?" "How do I tokenize a card with Finix.js?" "What's the difference between a Transfer and an Authorization?"
Integration Help:
"Show me an example of processing a refund." "How do I set up webhooks for payment status updates?" "What are the steps to onboard a seller?"
Troubleshooting:
"What does error code 402 mean?" "What does the RETURNED state mean for a Transfer?" "How do I handle declined payments?"
For best results:
- Be specific - "How do I create a card Authorization?" is better than "How do payments work?"
- Reference API resources - Use terms like "Transfer", "Authorization", "Identity", "Merchant" when relevant.
- Ask for examples - "Show me an example of..." prompts Cursor to pull code samples from documentation.
- Mention the environment - Specify "Sandbox" or "Production" if it matters for your question.
If the Finix MCP server does not show a green status indicator:
- Check the URL - Verify the URL is exactly
https://docs.finix.com/mcp. - Check internet connection - Verify you can access docs.finix.com in a browser.
- Check your plan - MCP requires a Cursor Pro plan or above.
If Cursor reports connection issues:
Check for firewall or proxy issues - Corporate networks may block MCP connections
Check MCP logs - Open the Output panel (Cmd / Ctrl + Shift + U) and select MCP Logs from the dropdown to see detailed error messages
Try the mcp-remote bridge - If you experience transport negotiation issues, use the
stdiobridge as a workaround:.cursor/mcp.json{ "mcpServers": { "finix-redocly-mcp": { "command": "npx", "args": [ "-y", "mcp-remote", "https://docs.finix.com/mcp" ] } } }
If Cursor seems to guess instead of searching the documentation:
- Be explicit - Try "Search the Finix documentation for..." in your prompt.
- Check MCP is enabled - Go to Settings > Tools & MCP and verify the server is enabled.
- Start a new chat - Sometimes a fresh chat session helps.
If Cursor answers with only API endpoint details and misses relevant guide content,
- Add Cursor rules - See the Enhancing Guide Access section above to instruct Cursor to fetch guide Markdown files.
- Ask explicitly - Try "Check the Finix guides for how to..." to prompt Cursor to search for guide content.
The MCP server uses Finix's published documentation. If you find any outdated information:
- Check docs.finix.com for the latest published documentation.
- If you notice a discrepancy, contact the Finix Support Team or your Finix representative for a definitive answer.
The MCP server always shows the latest information from docs.finix.com, which is updated regularly.
To disconnect Cursor from Finix documentation:
- Open Cursor Settings (Cmd / Ctrl + Shift + J).
- Navigate to Tools & MCP.
- Remove
finix-redocly-mcpfrom the list.
Or delete the finix-redocly-mcp entry from your .cursor/mcp.json file.