csb_parse_deck_text
Parse plain-text decklists into individual Magic: The Gathering cards for use with Commander Spellbook tools.
Instructions
Parse a plain-text decklist into cards using Commander Spellbook.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Plain-text deck list, e.g. '1x Sol Ring' per line |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "Plain-text deck list, e.g. '1x Sol Ring' per line",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}