Skip to main content
IX RWA exposes a hosted, read-only Model Context Protocol (MCP) endpoint — the Agent Gateway. It lets AI agents and MCP-compatible clients read the protocol’s live data directly: available assets, protocol statistics, and wallet portfolios.
The Agent Gateway is read-only. Agent-initiated transactions (payments, allocation) are a roadmap item, gated behind the verified money-path and mainnet — see Roadmap.

Endpoint

https://testnet.ixrwa.capital/api/mcp
Transport is Streamable HTTP using JSON-RPC 2.0. Point any MCP-compatible client at the URL above.

Tools

ToolPurpose
list_assetsList available compute assets and their headline economics.
get_assetFetch full detail for a single asset by id.
protocol_statsProtocol-level statistics (assets, AUM, activity).
get_portfolioRead a wallet’s holdings and positions.

Quickstart

1

List the available tools

Send an MCP tools/list request to discover the tools above and their input schemas.
2

Call a tool

Invoke a tool with tools/call. For example, list assets:
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": { "name": "list_assets", "arguments": {} }
}
3

Read a portfolio

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": { "name": "get_portfolio", "arguments": { "walletAddress": "0x…" } }
}

Use it from an MCP client

Add the endpoint to any MCP-compatible client (for example, Claude Code):
{
  "mcpServers": {
    "ix-rwa": { "type": "http", "url": "https://testnet.ixrwa.capital/api/mcp" }
  }
}

Data, honestly

The Gateway serves the same data the app uses. Asset economics include model-based projections (utilization and fee assumptions) as described in Revenue & distributions; realized on-chain figures are distinguished from projections. All values are testnet today.