get_card_by_set_and_number
Retrieve detailed Magic: The Gathering Chinese card data by specifying the set code and collector number. Enhance applications or workflows with precise card information from sbwsz-mcp.
Instructions
通过系列代码和收集编号获取单张卡牌。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collector_number | Yes | 收集编号,例如 '1'、'112'、'1a' | |
set | Yes | 系列代码,例如 'NEO'、'MOM' |
Input Schema (JSON Schema)
{
"properties": {
"collector_number": {
"description": "收集编号,例如 '1'、'112'、'1a'",
"type": "string"
},
"set": {
"description": "系列代码,例如 'NEO'、'MOM'",
"type": "string"
}
},
"required": [
"set",
"collector_number"
],
"type": "object"
}