Skip to main content
Glama
jlgrimes

Pokemon TCG Card Search MCP

by jlgrimes

口袋妖怪 TCG 卡牌搜索 MCP

该模型上下文协议 (MCP) 服务器允许 Claude 搜索和显示 Pokemon 集换式卡牌游戏卡。

设置说明

  1. 更新您的 Claude 配置文件:

    • 打开/Users/ABSOLUTE_PATH_HERE/Library/Application Support/Claude/claude_desktop_config.json

    • 添加以下配置(删除任何现有的 MCP 配置):

    {
      "mcpServers": {
        "ptcg-mcp": {
          "command": "node",
          "args": ["ABSOLUTE_PATH_HERE/dist/index.js"]
        }
      }
    }
  2. 退出克劳德:

    • 打开任务管理器

    • 找到并彻底除掉克劳德

  3. 重启克劳德:

    • Pokemon TCG Card Search MCP 将自动加载

    • 您现在可以向克劳德询问有关口袋妖怪卡的问题

Related MCP server: Poke-MCP

用法

配置完成后,您可以向 Claude 询问有关 Pokemon 卡的问题,例如:

  • “向我展示可以自由撤退的标准合法基础神奇宝贝”

  • “寻找生命值超过120的水系宝可梦”

  • “寻找皮卡丘卡”

克劳德将展示匹配的卡片及其图像和相关信息。

特征

  • 按名称、类型、子类型、合法性等搜索卡牌

  • 查看高分辨率卡片图像

  • 按各种卡片属性进行过滤:

    • 名称(支持使用!进行精确匹配以及使用*进行通配符)

    • 亚型(例如,Basic、EX、GX、V、VMAX 等)

    • 合法性(标准、扩展、无限制)

    • 类型(水、火、草等)

    • 撤退成本

    • 惠普

    • 国家图鉴号码

    • 还有更多!

示例查询

以下是您可以尝试的一些示例查询:

  • “向我展示可以自由撤退的标准合法基础神奇宝贝”

  • “寻找生命值超过120的水系宝可梦”

  • “搜索名称中带有‘char*’的卡牌”

  • “显示标准格式的禁用卡牌”

  • “寻找由小火龙进化而来的 EX 宝可梦”

查询语法

姓名搜索

  • 常规搜索: name:pikachu

  • 完全匹配: !name:pikachu

  • 通配符: name:char*

  • 保留连字符: name:chien-pao

过滤器

  • 类型: types:water-types:water (排除)

  • 子类型: subtypes:basic

  • 合法性: legalities.standard:legal

  • 生命值: hp:[100 TO 200]

  • 撤退成本: convertedRetreatCost:0

范围查询

使用[]表示包含范围,使用{}表示不包含范围:

  • hp:[100 TO 200] - HP 介于 100 至 200 之间(含)

  • hp:{100 TO 200} - HP 介于 100 到 200 之间(不含)

  • hp:[* TO 100] - HP 最高可达 100

  • hp:[100 TO *] - HP 100 或更高

响应格式

MCP 返回的卡信息包括:

  • 卡牌名称

  • 设置名称

  • 高分辨率卡片图像

  • 卡合法性

  • 根据要求提供其他卡详细信息

笔记

  • MCP 使用 Pokemon TCG API 来获取卡牌数据

  • 图像直接从 Pokemon TCG API 的 CDN 显示

  • 所有查询不区分大小写

  • 可以在单个查询中组合多个过滤器

Available Tools

2 tools
pokemon-card-priceC

Look up the current market price for a Pokemon card

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesCRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. CRITICAL: Query exactly what was asked for. Do not try to be systematic. Do not try to find specific examples. Do not try to be methodical. Just make the exact query requested. IMPORTANT: For hyphenated names like "chien-pao", you MUST preserve the hyphen exactly as it appears. For example, "chien-pao ex" should have name "chien-pao" (with the hyphen) and subtypes ["EX"]. Never remove or modify hyphens in the name. Use * for wildcard matching (e.g., "char*" to match all cards starting with "char", or "char*der" to match cards starting with "char" and ending with "der"). Use ! for exact matching (e.g., "!value" to match only exact value). IMPORTANT: If no name is explicitly provided in the query, do not include a name field at all.
setNoCRITICAL: Never infer or guess values. Never provide default values. Never make assumptions about what the user might want. Never try to be systematic or methodical. Never try to find "specific examples". Just query exactly what was asked for, nothing more and nothing less. The set information for this card. Use dot notation (.) to search nested fields (e.g., "set.id:sm1" for set ID, "attacks.name:Spelunk" for attack names). For example, "set.id:sm1" to find cards from a specific set. If no set information is explicitly mentioned, omit this field entirely.

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool looks up 'current market price' but doesn't specify data sources, freshness, accuracy, rate limits, authentication needs, or error conditions. For a price lookup tool with zero annotation coverage, this leaves significant behavioral gaps.

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 a single, efficient sentence that states the core functionality without unnecessary words. It's appropriately sized for a simple lookup tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

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

For a price lookup tool with no annotations and no output schema, the description is insufficient. It doesn't explain what format the price data returns (single value, range, historical data), currency, confidence metrics, or typical response structure. The agent has minimal context about what to expect from this tool.

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 schema already documents both parameters thoroughly. The description doesn't add any parameter semantics beyond what's in the schema - it doesn't explain how 'name' and 'set' parameters affect price lookup results or provide usage examples. Baseline 3 is appropriate when schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the verb ('look up') and resource ('current market price for a Pokemon card'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from the sibling tool 'pokemon-card-search', which likely has overlapping functionality for searching cards rather than specifically checking prices.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus the sibling 'pokemon-card-search' tool, nor does it mention any prerequisites, constraints, or alternative scenarios. The agent must infer usage based solely on the tool name and description without explicit direction.

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

TDQS

C2.7/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: one searches for cards, while the other looks up prices for cards. There is no overlap in functionality, making it easy for an agent to choose the right tool based on the task.

Naming Consistency5/5

Both tool names follow a consistent pattern of 'pokemon-card-' prefix followed by a descriptive action (search, price). This uniformity makes the tools predictable and easy to understand.

Tool Count2/5

With only two tools, the server feels thin for a card search domain. It lacks operations like filtering, sorting, or detailed card information retrieval, which are typical for such a purpose, making the scope incomplete.

Completeness2/5

The tool set is severely incomplete for a Pokemon TCG card search server. It covers basic search and price lookup but misses essential operations such as filtering by attributes (e.g., type, rarity), getting card details, or managing collections, leading to potential agent failures.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server that provides comprehensive Pokemon data and battle simulation capabilities to AI assistants. It enables users to access detailed stats, types, and moves while simulating battles with realistic mechanics like type effectiveness and status effects.
  • A
    license
    Not graded
    quality
    C
    maintenance
    A comprehensive Model Context Protocol server that provides AI assistants with rich Magic: The Gathering information, including card data, comprehensive rules, EDHREC recommendations, combo interactions, and intelligent Commander deck generation.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jlgrimes/ptcg-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server