search_by_cmc
Search Magic: The Gathering cards by mana value range, with optional filters for color identity and card type to find specific cards for deck building or strategy.
Instructions
Find cards within a mana value range, optionally filtered by color and type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
colors | No | ||
max | No | ||
min | No | ||
page | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"colors": {
"items": {
"enum": [
"W",
"U",
"B",
"R",
"G"
],
"type": "string"
},
"maxItems": 5,
"minItems": 0,
"type": "array"
},
"max": {
"minimum": 0,
"type": "integer"
},
"min": {
"minimum": 0,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"type": {
"type": "string"
}
},
"type": "object"
}