get_set
Fetch detailed information for a Magic: The Gathering card series using its set code. Ideal for accessing specific data from the sbwsz-mcp server for applications or workflows.
Instructions
根据系列代码获取单个系列的详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
set_code | Yes | 系列代码,例如 'NEO'、'MOM' |
Input Schema (JSON Schema)
{
"properties": {
"set_code": {
"description": "系列代码,例如 'NEO'、'MOM'",
"type": "string"
}
},
"required": [
"set_code"
],
"type": "object"
}