find_synergistic_cards
Identify synergistic Magic: The Gathering cards by specifying a focus card, synergy type, and format. Filter results by colors, mana value, and availability on Arena.
Instructions
Find cards that synergize with a specific card, theme, or archetype
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arena_only | No | Only return cards available in Arena | |
exclude_colors | No | Colors to exclude from results (e.g., "rb" to exclude red and black) | |
focus_card | Yes | Card name or theme to build around | |
format | No | Format legality requirement | |
include_lands | No | Include synergistic lands | |
limit | No | Number of synergistic cards to return | |
max_cmc | No | Maximum mana value | |
synergy_type | No | Type of synergy to discover |
Input Schema (JSON Schema)
{
"properties": {
"arena_only": {
"default": false,
"description": "Only return cards available in Arena",
"type": "boolean"
},
"exclude_colors": {
"description": "Colors to exclude from results (e.g., \"rb\" to exclude red and black)",
"type": "string"
},
"focus_card": {
"description": "Card name or theme to build around",
"type": "string"
},
"format": {
"description": "Format legality requirement",
"enum": [
"standard",
"modern",
"legacy",
"vintage",
"commander",
"pioneer",
"brawl",
"standardbrawl"
],
"type": "string"
},
"include_lands": {
"default": true,
"description": "Include synergistic lands",
"type": "boolean"
},
"limit": {
"default": 15,
"description": "Number of synergistic cards to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"max_cmc": {
"description": "Maximum mana value",
"minimum": 0,
"type": "number"
},
"synergy_type": {
"description": "Type of synergy to discover",
"enum": [
"tribal",
"combo",
"archetype",
"keyword",
"theme",
"mechanic"
],
"type": "string"
}
},
"required": [
"focus_card"
],
"type": "object"
}