Agent Arena Registry
Server Details
On-chain ERC-8004 agent registry. Search, register, and check reputation across 16 chains.
Verification
Glama connects to this endpoint on a schedule and records what it finds.
Last verified
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 3 tools
Each tool targets a distinct operation: retrieving a specific agent profile, registering a new agent, and searching the registry. There is no overlap in purpose, making selection unambiguous.
All tools follow the verb_noun pattern: get_agent_profile, register_agent, search_agents. The naming is uniformly descriptive and predictable.
Three tools is well-scoped for a registry that offers core create, read, and search functionality. Each tool serves a clear, non-redundant purpose.
The set covers the primary lifecycle (register, get, search), but lacks update/delete operations for agent profiles. These are minor gaps that do not block core discovery and registration use cases.
Available Tools
3 toolsget_agent_profileAInspect
Retrieve the full profile of a specific agent by their on-chain ID. Returns name, description, endpoints, reputation, reviews, and cross-chain presence. Free endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | Yes | On-chain agent ID (token ID from the ERC-8004 registry) | |
| chainId | Yes | Chain ID where the agent is registered (e.g. 8453 for Base) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the transparency burden. It adds 'Free endpoint' and lists return fields, but it does not disclose authentication requirements, rate limits, or error behavior. The read-only nature is implied by 'Retrieve,' but more detail would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence followed by a brief return list and a cost note. Every sentence adds value with no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with two parameters and no output schema, the description adequately covers purpose, return contents, and cost. It could mention the chainId explicitly in the description text, but the schema already handles that. Overall, it is sufficiently complete for an agent to select and invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both agentId and chainId fully described. The description adds little beyond the schema, only referencing the on-chain ID. With full schema coverage, the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Retrieve the full profile of a specific agent by their on-chain ID,' making the verb and resource explicit. It also lists returned content (name, description, endpoints, reputation, reviews, cross-chain presence) and distinguishes itself from siblings like register_agent (create) and search_agents (query) by focusing on a single agent ID.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when the agent ID is known, but it does not explicitly contrast with search_agents or state when not to use it. It provides clear context for invocation but lacks explicit alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
register_agentAInspect
Register a new AI agent on the Base blockchain ERC-8004 registry. Mints an on-chain identity NFT and indexes the agent for discovery. Requires $0.05 USDC payment via x402 on Base mainnet.
| Name | Required | Description | Default |
|---|---|---|---|
| acta | No | Optional ACTA Preview metadata when registering through POST /api/register?acta=true | |
| name | Yes | Agent display name | |
| oasf | No | Set true (POST /api/register?oasf=true) to publish a hosted OASF Agent Directory record | |
| services | No | Service endpoints | |
| agentWallet | No | Wallet address to receive payments | |
| description | Yes | Full agent description | |
| x402Support | No | Whether agent accepts x402 payments | |
| capabilities | No | Lowercase capability tags | |
| preferredChain | No | Chain to register on (default: base) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility. It discloses critical behaviors: on-chain registration, NFT minting, indexing for discovery, and a $0.05 USDC payment requirement via x402. This goes beyond a simple 'registers an agent' and provides useful operational context, though it omits failure modes or reversibility.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two succinct sentences that front-load the core purpose and side effects. Every sentence adds informational value with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, nested objects, no output schema), the description conveys essential prerequisites (payment, mainnet) and outcomes (NFT mint, indexing). It does not describe the expected response format or error scenarios, but for a registration tool, the description is largely sufficient for an agent to understand and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all 9 parameters, so structured data already explains each parameter. The description adds little parameter-level detail beyond reinforcing context like the blockchain and payment requirement. It does not clarify relationships or special cases (e.g., the meaning of acta/oasf flags), keeping it at the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Register'), the specific resource ('a new AI agent on the Base blockchain ERC-8004 registry'), and distinct outcomes (mints NFT, indexes for discovery). It differentiates from sibling tools like get_agent_profile and search_agents, which are read-only operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description communicates the primary use case (registering a new agent) and implies the alternative is to retrieve or search existing agents via siblings. However, it does not explicitly state 'when not to use' or name alternatives, making the guidance somewhat implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_agentsAInspect
Search the Agent Arena registry for AI agents by capability, name, or description. Returns a list of matching agents with their endpoints, pricing, and reputation scores. Requires $0.005 USDC payment via x402 on Base mainnet.
| Name | Required | Description | Default |
|---|---|---|---|
| acta | No | Only return agents with ACTA-ready private credential metadata | |
| oasf | No | Only return agents with a hosted OASF Agent Directory record | |
| chain | No | Filter by chain name, e.g. 'base', 'ethereum', 'polygon' | |
| limit | No | Max results to return (default 10, max 50) | |
| query | Yes | Search query — capability keywords, agent name, or description terms | |
| minScore | No | Minimum reputation score filter (0-100) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the burden of transparency. It discloses the $0.005 USDC payment requirement via x402 on Base mainnet, which is a significant behavioral trait, and indicates it returns a list with endpoints, pricing, and reputation scores. However, it does not explicitly state whether the operation is read-only or what happens on payment failure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the action and resource, and includes key behavioral context without unnecessary verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose, return data, and payment requirement. Given the schema fully documents parameters and there is no output schema, the description is largely complete for an agent to decide when and how to use the tool. It lacks explicit comparison to siblings but that is handled in usage guidelines.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions cover 100% of parameters, so the baseline is 3. The description adds minimal additional semantics beyond what the schema provides, such as indicating the query searches by capability, name, or description, but it does not elaborate on individual parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches the Agent Arena registry for AI agents by capability, name, or description, distinguishing it from sibling tools get_agent_profile and register_agent.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for discovering agents but does not explicitly contrast with get_agent_profile or register_agent, or state when not to use it. The context is clear but exclusions and alternatives are not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Changed
register_agent1 field changed- added
Input schema / properties / oasfAdded value: +{ + "description": "Set true (POST /api/register?oasf=true) to publish a hosted OASF Agent Directory record", + "type": "boolean" +}
- Changed
search_agents1 field changed- added
Input schema / properties / oasfAdded value: +{ + "description": "Only return agents with a hosted OASF Agent Directory record", + "type": "boolean" +}
2 tool updates
- Changed
register_agent1 field changed- added
Input schema / properties / actaAdded value: +{ + "description": "Optional ACTA Preview metadata when registering through POST /api/register?acta=true", + "type": "object" +}
- Changed
search_agents1 field changed- added
Input schema / properties / actaAdded value: +{ + "description": "Only return agents with ACTA-ready private credential metadata", + "type": "boolean" +}
3 tool updates
- First observed
get_agent_profile - First observed
register_agent - First observed
search_agents
Related MCP Connectors
Agent reputation registry: check, register, and endorse AI agents
Agent registry with Nostr identity, reputation, escrow, observability, and Lightning payments.
Trust infrastructure for AI agents. Portable reputation (JTS 0-5), agent discovery, vouching.
The MCP-native bridge to ERC-8004 (on-chain agent identity/reputation/validation): resolve registrat
Related MCP Servers
- AlicenseAqualityCmaintenanceAI agent identity and reputation registry. Ed25519 cryptographic identity, proof-of-work registration, peer verification, reputation scoring, task marketplace, and agent-to-agent messaging.16185 npmApache 2.0
- AlicenseAqualityCmaintenanceProvides trust and reputation tools for AI agent wallets within the x402 payment ecosystem and ERC-8004 agent registry. It enables users to perform wallet reputation lookups, real-time risk assessments, and browse registered agents.4342 npm-
- AlicenseAqualityAmaintenanceTrust, identity, and reputation infrastructure for AI agents. Register agents with W3C DID (Ed25519), check EigenTrust reputation scores, submit peer attestations, search agents by capability, and verify IPFS-anchored audit trails. 11 tools.20126 PyPI15MIT
- FlicenseAqualityDmaintenanceEnables querying ERC-8004 AI agent identities from on-chain and IPFS metadata. Supports search, listing, details, feedback, stats, and full metadata retrieval.112-
Glama MCP Gateway
Add one secure layer between your agents and this server.