PrepGenAICerts

Writing Good Tool Definitions: Descriptions, Schemas, and Errors

Core

Implement tools and understand the function-calling loop · Difficulty 2/5

0%
tool-descriptioninput-schemaerror-handlingtool-selection

Explanation

Description Quality Matters Most

A clear, detailed description of *what a tool does, when to use it, and what each parameter means* is the single biggest driver of correct tool selection. Under-described tools get misused or ignored -- no amount of schema precision compensates for a vague description.

Precise Input Schemas

The input_schema is JSON Schema: give it types, required fields, enums, and a description per field so the arguments Claude produces are well-formed. This reduces malformed calls, but it does not substitute for a good natural-language description -- the two serve different purposes (schema shapes the arguments; description drives *whether and when* to call the tool at all).

Error Handling

Return structured, informative errors (e.g., an is_error flag or a clear error message inside the tool_result) so Claude can recover or retry intelligently rather than guessing at what went wrong.

Right-Sizing the Tool Set

Too many overlapping tools cause confusion in tool selection and bloat the context window with definitions the model must consider on every turn. Give Claude a focused, non-overlapping set of tools sized to the actual task.

Common exam traps

  • Assuming more tools or a bigger tool catalog is strictly better -- overlapping tools cause confusion and waste context; a focused, non-overlapping set outperforms a large one.
  • Treating the input schema as the main lever for tool selection -- schema precision governs argument well-formedness, but the natural-language description is what drives whether Claude picks the right tool in the first place.
  • Returning a bare failure instead of a structured error, which leaves Claude unable to recover or retry sensibly.

Key Takeaways

  • Tool description quality -- what it does, when to use it, what each parameter means -- is the top driver of correct tool selection
  • Precise input_schema (types, required, enums, per-field descriptions) produces well-formed arguments but doesn't replace a good description
  • Structured, informative errors (is_error / error message) let Claude recover or retry instead of guessing
  • Right-size the tool set: too many overlapping tools cause misuse and bloat context

Glossary Terms

Related Concepts

PrepGenAICerts.com is an independent third-party exam-prep platform for the Claude Certified Architect (CCA-F) certification. We are not affiliated with, endorsed by, or acting on behalf of Anthropic PBC.

Note: New premium upgrades are temporarily paused while we resolve an issue with our payment provider. Existing premium members retain full access.