Skip to main content
Glama

Pokemon TCG Pocket MCP

Search cards

search_cards
Read-only

Search the Pokémon TCG Pocket card catalog by name, attack, ability, artist, or id, with optional filters for set, energy type, stage, card kind, rarity, Trainer subtype, HP range, weakness, and retreat cost. Returns up to 20 summarized cards plus the total number of matches.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
setNoSet id, e.g. 'A1', 'A2b', 'PROMO-A'.
kindNo
pageNo1-based page number. Defaults to 1.
hpMaxNoMaximum HP (Pokémon only).
hpMinNoMinimum HP (Pokémon only).
queryNoFree text: card name, attack or ability text, artist, or card id.
stageNo
energyNoEnergy type of the Pokémon.
localeNoLocale for card names, e.g. 'en', 'ja_JP', 'fr_FR'. Defaults to 'en'.
rarityNoRarity code, e.g. 'diamond-1', 'star-2', 'crown'.
weaknessNoWeakness energy type of the Pokémon.
retreatMaxNoMaximum retreat cost (Pokémon only).
trainerTypeNoTrainer subtype: item, supporter, tool, fossil, or stadium.

TDQS

A4.2/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true, and the description adds useful behavioral context by stating the result cap ('up to 20 summarized cards') and that the total number of matches is returned. It does not specify pagination or result ordering, but this is a reasonable level of disclosure for a read-only search tool.

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?

The description is two sentences with no fluff; the core action and scope are front-loaded, and the return behavior is stated at the end. The enumeration of filters is dense but necessary for a search tool.

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 tool with 13 optional parameters and no output schema, the description provides a solid overview of searchable fields, filterable attributes, and return shape. It lacks detail on sorting or result field structure, but combined with the schema's high coverage, the tool is adequately specified for an agent to call it.

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 85%, so the schema already documents most parameters in detail. The description adds a compact grouping of query and filters, which reinforces the query parameter's role but does not materially go beyond the schema's existing parameter descriptions.

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 opens with a specific verb ('Search') and a clear resource ('the Pokémon TCG Pocket card catalog'), and enumerates the exact searchable fields: name, attack, ability, artist, or id. It also lists the optional filters, distinguishing this search operation from sibling tools like get_card, which retrieves a single card.

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 clearly implies when to use the tool: when looking for cards by free-text query and/or applying any of the listed filters. It does not explicitly name sibling alternatives or state exclusions, but the search context is clear enough for an agent to select this tool over catalog_info or get_card.

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