csb_find_combos_by_names
Find Magic: The Gathering card combos by providing card names. Maps names to card IDs using Scryfall, then searches for combinations involving those cards.
Instructions
Resolve names via Scryfall → oracle_id, map to CSB IDs via cached index, then call find-my-combos.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fuzzy | No | Use Scryfall fuzzy name matching; default true | |
limit | No | ||
names | Yes | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"fuzzy": {
"description": "Use Scryfall fuzzy name matching; default true",
"type": "boolean"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"names": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"offset": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"names"
],
"type": "object"
}