analyze_deck_composition
Evaluate deck composition, mana curve, and card types for Magic: The Gathering decks. Receive balance recommendations tailored to specific formats and archetypes.
Instructions
Analyze deck composition, mana curve, card types, and provide balance recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commander | No | Commander card name (for Commander/Brawl formats) | |
deck_list | Yes | List of card names in the deck, one per line or comma-separated | |
format | No | Format to analyze for (affects recommendations) | |
strategy | No | Deck strategy archetype | unknown |
Input Schema (JSON Schema)
{
"properties": {
"commander": {
"description": "Commander card name (for Commander/Brawl formats)",
"type": "string"
},
"deck_list": {
"description": "List of card names in the deck, one per line or comma-separated",
"type": "string"
},
"format": {
"description": "Format to analyze for (affects recommendations)",
"enum": [
"standard",
"modern",
"legacy",
"vintage",
"commander",
"pioneer",
"brawl",
"standardbrawl"
],
"type": "string"
},
"strategy": {
"default": "unknown",
"description": "Deck strategy archetype",
"enum": [
"aggro",
"midrange",
"control",
"combo",
"ramp",
"tribal",
"unknown"
],
"type": "string"
}
},
"required": [
"deck_list"
],
"type": "object"
}