get_card_by_id
Retrieve detailed information for a specific Yu-Gi-Oh! card using its unique ID. Input the card ID to access card details instantly via the ygocdb-mcp server.
Instructions
通过卡牌ID获取单张游戏王卡牌的详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | 游戏王卡牌ID,通常为八位数字 |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "游戏王卡牌ID,通常为八位数字",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}