get_card_prices
Retrieve current Magic: The Gathering card prices by name, set/number, or Scryfall ID. Specify currency, format context, and optional budget alternatives or price history.
Instructions
Get current price information for a Magic: The Gathering card by name, set/number, or Scryfall ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_identifier | Yes | Card name, set/number, or Scryfall ID | |
currency | No | Currency type for prices | usd |
format_context | No | Show price relevance for specific format | |
include_alternatives | No | Include budget alternatives and upgrades | |
include_history | No | Include price trend data (not implemented in Scryfall API) |
Input Schema (JSON Schema)
{
"properties": {
"card_identifier": {
"description": "Card name, set/number, or Scryfall ID",
"type": "string"
},
"currency": {
"default": "usd",
"description": "Currency type for prices",
"enum": [
"usd",
"eur",
"tix"
],
"type": "string"
},
"format_context": {
"description": "Show price relevance for specific format",
"enum": [
"standard",
"modern",
"legacy",
"vintage",
"commander",
"pioneer"
],
"type": "string"
},
"include_alternatives": {
"default": false,
"description": "Include budget alternatives and upgrades",
"type": "boolean"
},
"include_history": {
"default": false,
"description": "Include price trend data (not implemented in Scryfall API)",
"type": "boolean"
}
},
"required": [
"card_identifier"
],
"type": "object"
}