Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.ingopayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Connect any MCP-compatible AI tool to the Ingo Payments Developer Hub and ask questions directly against the live documentation — instead of relying on your tool’s training data, which may be outdated or incomplete. The connection is read-only: no AI tool can edit, create, or modify any documentation through this integration. MCP server URL: https://developers.ingopayments.com/mcp

What this enables

When you connect your AI tool to this MCP server, it gains two capabilities: Search — queries the full documentation index to find relevant pages matching your question. The AI uses this proactively while generating a response, even without being asked explicitly. Read page content — retrieves the full text of any documentation page, including API field definitions, code examples, and spec details. Both tools operate on the current state of the documentation — not cached or training-data versions. This is particularly useful when looking up specific field constraints, error codes, webhook event schemas, or endpoint request/response structures.

Connect your AI tool

Claude

  1. Open Claude Settings → Connectors
  2. Select Add custom connector
  3. Enter a name (e.g. Ingo Developer Hub) and the URL: https://developers.ingopayments.com/mcp
  4. Select Add
  5. When starting a conversation, select the attachments icon (plus) and choose the connector to activate it

Claude Code

Run the following command in your terminal:
claude mcp add --transport http "Ingo Developer Hub" https://developers.ingopayments.com/mcp
Verify the connection:
claude mcp list

Cursor

  1. Open the command palette (Cmd+Shift+P / Ctrl+Shift+P)
  2. Search for Open MCP settings and select Add custom MCP — this opens mcp.json
  3. Add the following configuration:
{
  "mcpServers": {
    "Ingo Developer Hub": {
      "url": "https://developers.ingopayments.com/mcp"
    }
  }
}
  1. Save the file. Cursor will connect automatically.

VS Code

Create or edit .vscode/mcp.json in your workspace:
{
  "servers": {
    "Ingo Developer Hub": {
      "type": "http",
      "url": "https://developers.ingopayments.com/mcp"
    }
  }
}

Tips for better results

Ask specific questions to get the most relevant documentation pulled into context. For example:
  • “What fields are required in an IngoPay card verify request?”
  • “What webhook fires when a Notify Classic disbursement is successful?”
  • “What is the difference between Standard ACH and Same-Day ACH in the IngoPay process endpoint?”
You can also connect multiple MCP servers simultaneously. If you have other product documentation connected, be specific about which product or endpoint you’re asking about so the AI searches the right source.
This connection is read-only. AI tools connected to this MCP server can search and read documentation but cannot modify, create, or delete any content.