get_set_info
Retrieve Magic: The Gathering set details by set code to identify and verify a specific set.
Instructions
Get information about a Magic: The Gathering set by its code
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| set_code | Yes |
Retrieve Magic: The Gathering set details by set code to identify and verify a specific set.
Get information about a Magic: The Gathering set by its code
| Name | Required | Description | Default |
|---|---|---|---|
| set_code | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It implies a read-only lookup via "Get," but says nothing about what data is returned, how invalid set codes are handled, or any rate limits.
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?
A single front-loaded sentence with no filler; the verb, resource, and lookup key all appear immediately.
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 one-parameter lookup with no output schema, the description is minimally adequate, but it omits what information a set returns and error behavior for unknown codes.
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% for the single required set_code parameter. The phrase "by its code" loosely signals the parameter's role, but adds no format, casing, or validity detail beyond what the parameter name already conveys.
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?
States a specific verb and resource ("Get information about a Magic: The Gathering set") and scopes it with "by its code." This clearly differentiates it from card-oriented siblings like get_card_by_id and search_cards, though it never names an alternative explicitly.
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?
There is no guidance on when to use this versus siblings such as search_cards or get_card_by_id, nor any stated prerequisites or exclusions. The usage is only implied by the verb and resource.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.