get_agent_actions
List all on-chain action IDs logged for a given agent on Tracea.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_address | Yes | Ethereum address of the agent |
List all on-chain action IDs logged for a given agent on Tracea.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_address | Yes | Ethereum address of the agent |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only states the purpose and implies a read operation through 'List', but doesn't explicitly confirm read-only safety, pagination, ordering, or other behavioral traits. This is a significant gap for a tool with no annotation support.
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 with no filler. It earns its place by immediately announcing the action ('List') and the resource, making it efficient and easy to parse.
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 one-parameter tool with no output schema or annotations, the description provides enough to understand what is returned (a list of action IDs) and what input is needed. It lacks caveats like pagination, but for the tool's simplicity, it is adequately complete.
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 schema covers 100% of parameter semantics with a clear description ('Ethereum address of the agent'). The tool description merely restates 'a given agent', adding no new meaning beyond the schema. Baseline 3 is appropriate.
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 uses a specific verb 'List' and clearly specifies the resource: 'on-chain action IDs logged for a given agent'. It distinguishes from siblings like get_action (singular action) and log_action (write operation) by focusing on listing all action IDs for an 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 states the context of use ('for a given agent') and the tool's function, making it clear when to choose this tool. However, it doesn't explicitly mention alternatives or exclusions, which would push it to a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Several tools overlap in the information they return: get_agent_info, verify_agent, and is_agent_revoked all provide agent status or verification details. Descriptions help distinguish raw registry data from a comprehensive verification check, but the boundaries are somewhat blurry, potentially leading to misselection.
All tool names follow a consistent verb_noun pattern (get_, is_, log_, report_, verify_), with no mixed casing or unconventional naming. The use of different verbs for different actions is logical, though the get_ prefix dominates the read operations.
With 9 tools, the server is well-scoped and falls within the ideal 3-15 range. Each tool addresses a distinct need in the domain of agent identity verification and action logging, and none feel superfluous or redundant.
The server covers reading agent information, verifying identity, and logging actions, but lacks essential lifecycle operations such as registering, updating, or revoking agents. While this may be intentional for an external registry, it leaves notable gaps for a fully self-contained tool set.