Trading Cards
Pokemon, Magic, and Yu-Gi-Oh card prices and data
Look up trading card prices, details, and set info across Pokemon TCG, Magic: The Gathering, and Yu-Gi-Oh. Search by card name, browse sets, compare prices across marketplaces, and identify cards from partial info.
Search for trading cards by name across Pokemon TCG, Magic: The Gathering, or Yu-Gi-Oh. Returns card details, images, and market prices.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trading-cards",
"skill": "search_cards",
"input": {
"query": "Charizard",
"game": "pokemon"
}
}' \
https://api.toolrouter.com/v1/tools/callGet detailed pricing for a specific card including prices by condition, foil variants, and purchase links. Use a card_id from search results.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trading-cards",
"skill": "card_price",
"input": {
"card_id": "base1-4",
"game": "pokemon"
}
}' \
https://api.toolrouter.com/v1/tools/callBrowse all cards in a specific set, sorted by value. Find the most valuable pulls or check set composition.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trading-cards",
"skill": "set_browse",
"input": {
"set_id": "base1",
"game": "pokemon"
}
}' \
https://api.toolrouter.com/v1/tools/callFind the most valuable or popular cards for a game. Filter by rarity, type, or set to discover what is worth the most.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trading-cards",
"skill": "top_cards",
"input": {
"game": "pokemon"
}
}' \
https://api.toolrouter.com/v1/tools/callIdentify a card from partial information — a name fragment, set number, or vague description. Helpful when the user has incomplete details.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trading-cards",
"skill": "identify_card",
"input": {
"name": "chariz",
"game": "pokemon"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"trading-cards","skill":"search_cards","input":{}}' \
https://api.toolrouter.com/v1/tools/call