mtga-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mtga-mcpWhich rares am I missing from FDN?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mtga-mcp
A local MCP server for querying your Magic: The Gathering Arena collection in natural language. It ingests MTGA's own card catalog, your owned cards from the game log, and Scryfall card data into a local SQLite database, then exposes query tools that any MCP client (Claude Desktop, Claude Code) can call.
Nothing leaves your machine except the one-time Scryfall bulk-data download. There is no model bundled here — your MCP client supplies the LLM.
How it works
Source | What it provides | Location (macOS) |
MTGA card catalog | Every card: name, set, collector #, rarity, colors |
|
Player.log | Cards you own + wildcard/currency balances |
|
Scryfall bulk | Oracle text, mana cost, prices, legalities, images | downloaded from scryfall.com |
The join key is MTGA's GrpId, which equals Scryfall's arena_id. Everything lands in
~/.local/share/mtga-mcp/mtga.db (override with MTGA_MCP_DATA_DIR).
Paths are macOS-specific (this project targets a native macOS MTGA install launched via Heroic). Adjust
src/mtga_mcp/paths.pyfor other platforms.
Related MCP server: iwantmymtg-mcp
Setup
uv syncStep 0 — enable MTGA Detailed Logs (required for owned counts)
MTGA only writes your collection to Player.log when detailed logging is on:
In MTGA: Settings → Account → check "Detailed Logs (Plugin Support)".
Restart MTGA and open your Collection screen once.
The card catalog and Scryfall data work without this; only owned quantities need it.
Import data
uv run mtga-mcp import # runs all three steps
# or selectively:
uv run mtga-mcp import --catalog # ~19.7k cards from MTGA
uv run mtga-mcp import --collection # your owned cards + wildcards
uv run mtga-mcp import --scryfall # enrich (downloads a ~77MB bulk file, cached)Re-run import --collection whenever your collection changes; re-run --scryfall
occasionally for new sets/prices (it only re-downloads when Scryfall has newer data).
Use it from an MCP client
Claude Code
claude mcp add mtga -- uv --directory /Users/scott/git/mtga-mcp run mtga-mcp serveClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"mtga": {
"command": "uv",
"args": ["--directory", "/Users/scott/git/mtga-mcp", "run", "mtga-mcp", "serve"]
}
}
}Then ask things like:
"How complete is my collection? Show the per-rarity breakdown and my wildcards."
"Which rares am I missing from FDN?"
"List blue instants I own that are Standard-legal."
Tools exposed
Tool | Purpose |
| Filter by name / colors / rarity / set / type; optional |
| Cards you own (count ≥ 1), same filters |
| Cards in a set you haven't got a playset (4) of, with a |
| Distinct owned, total copies, per-rarity breakdown, wildcards |
| Ad-hoc read-only |
| Import a decklist from pasted text or an Archidekt/Moxfield URL |
| List stored decks |
| Cards + wildcards needed to complete a deck |
| Which cards to craft to unlock the most decks |
| Best Bo1/Bo3 deck you could build, meta strength × buildability |
| Remove a stored deck |
Database tables: cards, collection(grp_id, count), wildcards(kind, count), meta,
decks, deck_cards.
Deck buildability
Import meta decks (or your own brews), then ask what you're missing and what to build.
# Import from pasted Arena/MTGO text (tag it with meta info for ranking):
pbpaste | uv run mtga-mcp deck import --paste --name "Mono-Red" --format Standard \
--best-of 1 --meta-share 0.18
uv run mtga-mcp deck import --file list.txt --name "Dimir Midrange" --best-of 3 --tier 1
# Import from a deck host with a public API:
uv run mtga-mcp deck import --url https://archidekt.com/decks/1234567
uv run mtga-mcp deck import --url https://www.moxfield.com/decks/AbCdEf
uv run mtga-mcp deck gap "Mono-Red" # cards + wildcards you still need
uv run mtga-mcp deck best --best-of 1 # best deck you can build right now
uv run mtga-mcp deck craft-priority # what to craft to unlock the most decksThe north-star query — "given my cards and the current meta, what's the best Bo1/Bo3
deck I could build?" — is deck best, which ranks decks by meta strength × how few
wildcards you're missing. Strength comes from the --tier / --meta-share / --win-rate
you supply at import (meta sites don't expose this programmatically); with none supplied it
ranks purely by buildability.
A note on meta-deck sources
The big meta sites (MTGGoldfish, Untapped, AetherHub, mtgdecks) actively block automated
access — Cloudflare, robots ai-train=no, blocked bot user-agents, and blocked export
endpoints. So this tool imports decklists from pasted text and deck-host public APIs
(Archidekt, Moxfield) instead. A best-effort MTGGoldfish scraper exists behind an explicit
--allow-scrape flag but is brittle and may fail; pasting the Arena export (one click in your
browser) is the reliable path.
Development
uv run pytestNot yet implemented (ideas)
Auto-refreshing meta snapshots, live log-watching, format-legality enforcement, deck similarity/clustering, non-English card names.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMagic: The Gathering MCP server with card search, rules lookup, deck analysis, and Commander intelligenceLast updated141384MIT
- AlicenseAqualityAmaintenanceMCP server for I Want My MTG that enables conversational search of Magic: The Gathering cards/sets and inventory management via API tools.Last updated601981MIT
- AlicenseAqualityDmaintenanceProvides AI assistants with 69 tools, 19 prompts, and 21 resources for deep access to Magic: The Gathering, including card data, combos, draft analytics, Commander metagame, competitive constructed, sideboard strategy, deck building, and rules engine, working with any MCP client.Last updated5616MIT
- Alicense-qualityCmaintenanceEnables querying multi-language trading card game data (Pokémon TCG and more) through natural language or direct tools, integrated with Pipeworx MCP gateway.Last updated29MIT
Related MCP Connectors
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fkadriver/mtga-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server