Connect agents to the Aurato Graph.

The Aurato Model Context Protocol (MCP) server provides tools that AI agents can use to interact with the payment entities, metrics, relationships, evidence and change history available throughout the Aurato Graph.

Payments context, built for agents.

The Aurato MCP server gives compatible assistants a structured way to find payment records, retrieve canonical entities and follow their relationships without scraping Atlas pages. Tool responses use the same Aurato IDs and source-linked evidence as the REST API, so agent output and product integrations stay aligned.

Terminal
{
  "mcpServers": {
    "aurato": {
      "url": "https://mcp.aurato.com"
    }
  }
}

Manage MCP access and sessions

OAuth lets you authorize and revoke agent access without putting an Aurato key in the client configuration. Each connection is scoped to your Aurato account and plan.

  1. 1
    Authorize a client

    Review the requested access on the Aurato consent page and approve the connection.

  2. 2
    Review active sessions

    See which assistants are connected, when they were authorized and when they last accessed the Graph.

  3. 3
    Revoke access

    End one client session without affecting your other agents, API keys or MCP tokens.

Set up Aurato MCP with a plugin

Recommended

Aurato's agent plugin configures the MCP server, installs Aurato-maintained skills and keeps both up to date for compatible assistants.

  1. 1
    Install the Aurato CLI

    Add the latest Aurato agent tooling to your environment.

  2. 2
    Run agent setup

    The setup command detects supported clients and configures the plugin for each one.

  3. 3
    Authorize Aurato

    Complete OAuth in your browser to make the Graph tools available to the agent.

Terminal
npm install -g @aurato/cli@latest
aurato agent setup

Manually set up Aurato MCP

If your client does not support the Aurato plugin, connect it directly to the remote MCP endpoint.

Cursor

Add this remote server to ~/.cursor/mcp.json. Cursor opens the Aurato OAuth flow when the connection is first used.

~/.cursor/mcp.json
{
  "mcpServers": {
    "aurato": {
      "url": "https://mcp.aurato.com"
    }
  }
}

Tools

The initial Aurato MCP surface is read-only and organized around the same records, evidence model and change history as the Graph API.

ResourceToolDescription
Searchsearch_auratoFind payment records across supported Aurato entity types.
Entitiesget_entityRetrieve a canonical entity by Aurato ID, including typed attributes.
Metricsget_measurementsRead current and historical measurements with periods, units and notes.
Relationshipsget_relationshipsFollow links between methods, markets, schemes, systems and other records.
Evidenceget_evidenceRetrieve source-linked support for entities, claims and measurements.
Changesget_change_historyInspect additions, updates and other Graph changes over time.

Skills for agents

Aurato-maintained skills give coding agents reusable guidance for choosing canonical records, interpreting payment measurements, traversing relationships and preserving evidence in their output.

Install skills with the plugin

Recommended

The Aurato plugin installs the MCP connection and skills together, then keeps them synchronized with the latest Graph guidance.

Manually install agent skills

Install the skills separately when you configure the MCP server by hand. Manual installations need to be updated explicitly.

Terminal
npx skills add https://aurato.com