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: the IX-CORE index and its constituents, protocol statistics, and wallet portfolios. It is served by the app itself, so agents connect by URL — no install, no build, no repo.
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

Transport is Streamable HTTP with stateless JSON-RPC 2.0 (protocol version 2025-06-18; server ix-rwa 0.1.0). CORS is open, and JSON-RPC batch requests are supported. A plain GET on the endpoint returns server info and the tool names for a quick liveness check.

Tools

Quickstart

1

List the available tools

Send an MCP tools/list request to discover the tools above and their input schemas. initialize and ping are also supported.
2

Call a tool

Invoke a tool with tools/call. For example, list only available H200 assets:
3

Read a portfolio

Note the argument is wallet (not walletAddress):

Response shapes

Tool results are returned as MCP text content containing JSON. Representative fields:
list_assets
protocol_stats
get_asset additionally returns description, reliabilityPct, hourlyRateUsd, tokenAddress, and the ownership split (40% IX / 60% investors). AUM and NAV-per-share come from the live on-chain vault (6-decimals), matching the app — not a database sum.

Use it from an MCP client

Add the endpoint to any MCP-compatible client (for example, Claude Code):
Or via the CLI:

Data, honestly

The Gateway serves the same data the app uses. On testnet, NAV and yield are simulated in settlement but driven by live market data (the LiveDataNAVOracle, fed from live Vast.ai rates) as described in Revenue & distributions; realized on-chain figures are distinguished from simulated ones.