Skip to main content
Glama
Abbabon

mystic-tutor-mcp

by Abbabon

get_card_rulings

Retrieve official WotC rulings and oracle text for any Magic: The Gathering card by name. Resolve rules questions with published, authoritative answers and fuzzy name matching.

Instructions

Get official WotC rulings for a Magic: The Gathering card. Returns the card's oracle text plus all published rulings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesCard name to get rulings for (fuzzy matching supported)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the disclosure burden. It reveals the return content ('oracle text plus all published rulings') and the read-only nature through 'Returns'. It does not cover error handling or auth, but for a simple lookup tool these omissions are minor.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler: the first states the action and the second states the return value. Information 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.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter lookup with no output schema, the description adequately tells an agent what will be returned. It could mention what happens for unknown card names or cards without rulings, but these are edge cases and the core usage is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the single 'name' parameter is already fully documented in the input schema. The tool description does not add extra parameter meaning, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific action ('Get official WotC rulings') and resource ('a Magic: The Gathering card'), making the tool's purpose immediately clear. The sibling tools like get_card and search_cards are visibly different because this one is exclusively about rulings and oracle text.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes clear that this tool is for retrieving rulings and oracle text, so when-to-use is evident. It does not explicitly name alternative tools or state when not to use it, but the context is strong enough to avoid confusion among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.