articleAInspect
Full Wikipedia article as clean structured JSON — sections as an array, infobox as key/value facts, no HTML or wikitext. Pass sections to fetch only the parts you need (e.g. ["History"]) and max_chars to cap the payload; both exist to keep long articles from flooding your context.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Article title, alias, or Q-id. | |
| sections | No | Optional section names to include (substring match, case-insensitive). Omit for the whole article. | |
| max_chars | No | Optional cap on total section text returned. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the output format (JSON) and that HTML/wikitext is stripped, which is useful. However, it doesn't mention potential error behaviors (e.g., missing titles, unmatched sections) or any rate limits. The mention of content caps implies large outputs, but other behavioral traits are unspecified, resulting in a mid-range score.
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 sentences, front-loaded with the core purpose and output format, then efficiently explaining the control parameters. Every clause adds value—no filler or redundancy. It's compact yet comprehensive.
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 simplicity (3 params, no output schema), the description explains the return structure (structured JSON, sections, infobox) and how to constrain output. It misses details like error handling and what happens when a requested section doesn't exist, but overall it provides sufficient context for the agent to invoke it correctly. An explicit note about title aliases/Q-ids is in the schema, so not repeated. Slightly incomplete on edge cases, but solid.
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 already fully documents the parameters (title, sections, max_chars) with descriptions, so baseline is 3. The description adds extra meaning by explaining the purpose of sections ('fetch only the parts you need') and max_chars ('cap the payload') and why they exist ('to keep long articles from flooding your context'). This goes beyond the raw schema, enhancing the agent's understanding of when and how to use them.
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 provides a 'Full Wikipedia article as clean structured JSON' and specifies the structure (sections array, infobox key/value facts, no HTML/wikitext). The verb 'fetch' is implied and the resource is unambiguous. It distinguishes itself from siblings (lookup, recent, search) by focusing on retrieving the full article content in a structured format.
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 provides explicit guidance on when to use the `sections` and `max_chars` parameters, explaining they exist to keep long articles from flooding context. It doesn't explicitly compare with sibling tools or state when to prefer this over search/lookup, but the 'Full Wikipedia article' phrasing implies it's for retrieving complete article data. A slight gap is the lack of alternative tool mention, keeping it from a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.