ygocdb-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HTTP_PORT | No | Port for the HTTP server when running in Streamable HTTP mode | 3000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_cardsB | 通过关键字搜索游戏王卡牌,可以搜索卡牌名称、效果文本等。 |
| get_card_by_idA | 通过卡牌ID获取单张游戏王卡牌的详细信息 |
| get_card_imageA | 通过卡牌ID获取游戏王卡牌的图片 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_card_by_id retrieves detailed card information, get_card_image fetches the card's image, and search_cards performs keyword-based searches. There is no overlap in functionality, making it easy for an agent to select the correct tool without confusion.
All tool names follow a consistent verb_noun pattern with snake_case (e.g., get_card_by_id, get_card_image, search_cards). The naming is predictable and readable, with no deviations or mixed conventions.
With only 3 tools, the set feels thin for a card database server, as it lacks operations like updating, deleting, or managing card collections. However, it covers basic retrieval and search functions adequately for its limited scope.
The tools provide good read/search coverage (get and search), but there are notable gaps in CRUD operations—no create, update, or delete functions. This limits the server to querying only, which may cause dead ends for agents needing to modify data.