get_card_image
Retrieve Yu-Gi-Oh! card images by providing the card ID using the ygocdb-mcp server. Input the card ID to fetch and display the corresponding card image.
Instructions
通过卡牌ID获取游戏王卡牌的图片
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | 游戏王卡牌ID,可以使用search_cards工具搜索 |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "游戏王卡牌ID,可以使用search_cards工具搜索",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}