Skip to main content
Glama

Pokemon TCG Pocket MCP

List printings

list_printings
Read-only

List every printing of one card across all sets: printing id, set, collector number, rarity, artist, and canonical page URL. Accepts either a printing id like 'A1-001' or a gameplay card id like 'PK_000010'. get_card only returns the first printing; use this when the question is about reprints, alt arts, or pull sources.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPrinting id ('A1-001') or gameplay card id ('PK_000010').
localeNoLocale for names. Defaults to 'en'.

TDQS

A4.4/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is covered. The description adds useful behavior context: it accepts both printing ids and gameplay card ids, and it lists the exact fields returned. It does not mention pagination or locale effects, but these are minor for a read-only listing operation.

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?

Three sentences with no filler: purpose and output fields are front-loaded, then the dual-id behavior is stated, then the routing guidance to get_card is provided. 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?

The description lists the return fields and id formats, which is enough to call the tool correctly for typical reprint/alt-art questions. Since there is no output schema, describing the fields is helpful. A small gap is that it does not explicitly state pagination or what happens when no printings match, but the read-only nature and clear purpose keep this from being a serious omission.

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?

The schema already provides 100% parameter description coverage for both id and locale, including the same id format examples ('A1-001', 'PK_000010'). The description does not add meaning beyond the schema for either parameter, so the baseline of 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?

States a specific verb and resource: 'List every printing of one card across all sets,' with concrete output fields. It also distinguishes itself from get_card, which is a sibling tool, by noting the get_card only returns the first printing.

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

Usage Guidelines5/5

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

Explicitly tells the agent when to use this tool: when the question is about reprints, alt arts, or pull sources. It also names the alternative (get_card) and explains why that alternative is insufficient in this case.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: catalog metadata, search, single-card retrieval, printings, sets, packs, locales, and deck validation/creation/testing/simulation are all cleanly separated. Even the deck-related tools are unambiguous because each targets a different stage: validate, suggest, trial, or matchup.

Naming Consistency4/5

The vast majority of tools follow a predictable verb_noun pattern (list_sets, get_card, search_cards, simulate_matchup, evaluate_deck). The only outlier is catalog_info, which uses a noun_info form instead of an imperative verb, creating a minor but noticeable deviation.

Tool Count5/5

At 11 tools, the server is well-scoped for its domain of card-catalog lookup and deck analysis. Each tool covers a distinct function and none feel redundant or unnecessary.

Completeness4/5

The catalog surface is strong with search, get, list, and metadata tools, and the deck workflow covers validation, suggestion, solo trialing, and matchups. Minor gaps exist: search_cards returns at most 20 results with no pagination, and there are no detailed set/pack getters, but agents can work around these with existing tools.

Resources