Skip to main content

MCP Server

RTGS.global provides an MCP (Model Context Protocol) server that lets AI-powered developer tools access the RTGS.global API documentation, integration guides, and recipes directly from your editor.

Server URL: https://mcp.rtgs.global/mcp

Setup

Select your AI tool to get started:

Run this command in your terminal:

claude mcp add --transport http rtgs-docs https://mcp.rtgs.global/mcp

This adds the server to your user-level config so it's available in every project. Alternatively, add it to your project's .mcp.json to share it with your team:

{
"mcpServers": {
"rtgs-docs": {
"type": "http",
"url": "https://mcp.rtgs.global/mcp"
}
}
}

Run /mcp to confirm the server is connected.

Available Tools

ToolDescription
search_docsFull-text search across guides, integration recipes, and API endpoints
get_endpointFetch full details for a specific Participant Gateway API endpoint by path and method
get_recipeRetrieve a step-by-step integration recipe for a specific payment flow

Test Your Setup

Once connected, try asking your AI assistant:

  • "What are the steps to initiate a Link and Settle payment?"
  • "Show me the request body for the Payaway endpoint"
  • "How do I verify a webhook signature?"
  • "What events does the FX Quotes flow produce?"

The assistant will call the appropriate tools and synthesise an answer from the live documentation.