Get asset detail
get_assetFull public detail of one AETumi asset by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
get_assetFull public detail of one AETumi asset by id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds only the 'public' qualifier, which hints at scope but does not disclose significant behavioral details beyond the annotations.
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, well-structured sentence that immediately conveys the core purpose. There is no redundant wording, and it is appropriately front-loaded.
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 simple single-parameter interface, rich annotations, and no output schema, the description covers the essential information for correct invocation. It lacks explicit mention of the return structure or edge cases, but such detail is not critical for a read-only getter.
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 0%, so the description must compensate. It mentions 'by id' but does not elaborate on the id's meaning, format, or constraints. This adds minimal value over the raw schema, which only lists 'id' as a required string.
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 retrieves the full public detail of a single asset by its id. It uses a specific verb (get) and resource (AETumi asset), and distinguishes itself from sibling tools like search_assets (searching) and get_pricing (pricing).
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 one has an asset id, but it does not explicitly state when to use this tool versus alternatives like search_assets. No exclusions or alternatives are mentioned, leaving the routing decision to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.