List sets
list_setsList every Pokémon TCG Pocket set with its id and localized name. Use the ids to filter search_cards by set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale for set names. Defaults to 'en'. |
list_setsList every Pokémon TCG Pocket set with its id and localized name. Use the ids to filter search_cards by set.
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale for set names. Defaults to 'en'. |
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?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds value by specifying the result includes every set and the exact output fields, but it doesn't disclose ordering, pagination, or other behavioral details. This is adequate but not rich.
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?
Two short sentences with no redundancy: the first states the tool's purpose and output, the second states the usage sequence. The description is front-loaded and every sentence earns its place.
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-only list tool with no required parameters and no output schema, the description is complete: it names the output fields and connects the tool to search_cards. Minor gaps like locale behavior are already covered by the schema.
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 already documents the only parameter (locale) with a description and default value (100% coverage). The tool description adds no additional parameter meaning, so 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 uses a specific verb ('List') and resource ('every Pokémon TCG Pocket set') and explicitly names the output fields ('id and localized name'). It clearly distinguishes itself from siblings like list_packs and list_printings by naming the resource type.
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 a concrete usage instruction: 'Use the ids to filter search_cards by set.' This tells the agent how to chain the tool with a sibling. It doesn't explicitly discuss when not to use it, but the resource specificity makes the intended context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.