search_format_staples
Identify meta-relevant cards for Magic: The Gathering formats, filtered by role, tier, color, and price. Optimize deckbuilding with targeted card recommendations for competitive play.
Instructions
Find format staples, meta cards, and role-specific cards for competitive play
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color_identity | No | Color identity filter (e.g., "wr", "grixis", "colorless") | |
format | Yes | Magic format to analyze | |
limit | No | Number of results to return | |
max_price | No | Maximum price in USD | |
role | No | Card role in deck archetypes | |
tier | No | Meta tier level | competitive |
Input Schema (JSON Schema)
{
"properties": {
"color_identity": {
"description": "Color identity filter (e.g., \"wr\", \"grixis\", \"colorless\")",
"type": "string"
},
"format": {
"description": "Magic format to analyze",
"enum": [
"standard",
"modern",
"legacy",
"vintage",
"commander",
"pioneer",
"brawl",
"standardbrawl"
],
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"max_price": {
"description": "Maximum price in USD",
"minimum": 0,
"type": "number"
},
"role": {
"description": "Card role in deck archetypes",
"enum": [
"removal",
"threats",
"utility",
"lands",
"ramp",
"draw",
"counterspells"
],
"type": "string"
},
"tier": {
"default": "competitive",
"description": "Meta tier level",
"enum": [
"top",
"competitive",
"budget",
"fringe"
],
"type": "string"
}
},
"required": [
"format"
],
"type": "object"
}