scryfall-mcp
A Model Context Protocol server that exposes the Scryfall Magic: The Gathering API as tools for LLM clients, enabling card search, images, prices, sets, rulings, symbology, catalogs, and bulk data access.
README
scryfall-mcp
A Model Context Protocol server that exposes the Scryfall Magic: The Gathering API as tools for LLM clients (Claude Desktop, Claude Code, etc.).
No API key is required — Scryfall is a public API. The server sends a descriptive
User-Agent, requests JSON, and throttles itself to ~10 requests/second per Scryfall's
guidelines.
Tools
Card search & lookup
search_cards— full-text search using Scryfall query syntax (pagination, sort, unique modes)get_card_named— exact or fuzzy name lookup, optional setget_random_card— a random card, optionally constrained by a queryautocomplete_card_names— name completions for a partial inputget_card_by_id— lookup by Scryfall UUIDget_card_by_set_number— lookup by set code + collector number (+ optional language)get_card_collection— batch lookup of up to 75 cards by identifier
Images & prices
get_card_images— image URIs (small/normal/large/png/art_crop/border_crop), handles double-faced cardsget_card_prices— market prices (USD/foil/EUR/tix) and purchase linksget_card_printings— every printing of a card with per-printing set, rarity, prices, and art
Sets & rulings
list_sets— all sets (compact summary)get_set— a set by code, Scryfall ID, or TCGplayer group IDget_card_rulings— official rulings by card ID or set + collector number
Symbology & catalogs
list_symbology— all card symbols with metadataparse_mana_cost— parse a mana cost string into canonical formget_catalog— canonical value lists (creature types, keyword abilities, card names, …)
Bulk data
list_bulk_data— list downloadable full-dataset files (returns download URIs)get_bulk_data— metadata for one bulk file by type or ID
Card-heavy responses are summarized to the most useful fields to keep output compact. Single-card lookups accept
full: trueto return the complete Scryfall object. Bulk-data tools return download URIs only — fetch the (often hundreds of MB) files directly.
Install & build
npm install
npm run build
Configure a client
Point your MCP client at the built entry. For Claude Desktop
(claude_desktop_config.json) or Claude Code (.mcp.json):
{
"mcpServers": {
"scryfall": {
"command": "node",
"args": ["/Users/ronald/Desktop/projects/scryfall-mcp/dist/index.js"]
}
}
}
Or add it to Claude Code from the CLI:
claude mcp add scryfall -- node /Users/ronald/Desktop/projects/scryfall-mcp/dist/index.js
Development
npm run dev # tsx watch mode
npm run typecheck # tsc --noEmit
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.