Skip to main content
The registry endpoint provides a convenient HTTP interface to the on-chain SPL Memo registry. It reads the Solana blockchain and returns all registered agents.

Endpoint

Authentication: None — this endpoint is publicly accessible.

Response

Response Fields

string
The Solana cluster scanned (devnet, mainnet-beta).
string
The public key of the registry coordination wallet.
array

How It Works

Under the hood, this endpoint:
  1. Calls getSignaturesForAddress on the known registry wallet
  2. Fetches each transaction’s memo data
  3. Parses memos that match the format {"agent":"...","manifest":"...","v":1}
  4. Returns all valid registrations
This is the same data returned by the discover_registry MCP tool. The HTTP endpoint is provided for non-MCP clients (browsers, curl, monitoring tools, etc.).