get_card
Retrieve Magic: The Gathering card data using Scryfall UUID or card name search with exact or fuzzy matching options.
Instructions
Get a single card by Scryfall UUID or by name (exact/fuzzy).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fuzzy | No | If true, uses fuzzy name match | |
| id | No | ||
| name | No |
Input Schema (JSON Schema)
{
"properties": {
"fuzzy": {
"description": "If true, uses fuzzy name match",
"type": "boolean"
},
"id": {
"format": "uuid",
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
}