validate_brawl_commander
Check if a Magic: The Gathering card is valid as a commander in Brawl or Standard Brawl formats using Scryfall MCP Server integration.
Instructions
Validate if a card can be a legal commander in Brawl or Standard Brawl formats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_identifier | Yes | Card name, set code+collector number, or Scryfall ID to validate | |
format | Yes | Brawl format to validate for (brawl = Historic Brawl, standardbrawl = Standard Brawl) |
Input Schema (JSON Schema)
{
"properties": {
"card_identifier": {
"description": "Card name, set code+collector number, or Scryfall ID to validate",
"type": "string"
},
"format": {
"description": "Brawl format to validate for (brawl = Historic Brawl, standardbrawl = Standard Brawl)",
"enum": [
"brawl",
"standardbrawl"
],
"type": "string"
}
},
"required": [
"card_identifier",
"format"
],
"type": "object"
}