get_prices_by_name
Retrieve Magic: The Gathering card pricing details by exact name using JSON output, including USD, EUR, and foil values, through the Scryfall MCP Server.
Instructions
Retrieve price information for a card by its exact name. Returns JSON with usd, usd_foil, eur, tix, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Exact card name |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Exact card name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}