Connect Claude to Disney Lorcana card data: enrich collections, look up cards, filter by format.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Disney Lorcana TCG Collection.
enrich_csvEnriches a raw TCGPlayer export with Ink, Cost, Type, Subtypes, STR/WIL/Lore, Inkable, Keywords, and Abilities. Writes an enriched CSV and a dreamborn.ink-ready import file next to the input. `refresh_prices=True` also refreshes TCG Market Price with a live tcgcsv.com lookup.
lookup_cardLooks up any card by name. Returns full stats, ability text, format legality, and card image URL.
resolve_cardFuzzy-resolves an informal, misspelled, or subtitle-less card name (e.g. "goofy musketeer", "elsa"). Returns a single confident match, a ranked top-3 to disambiguate, or nothing found.
search_cardsSearches the full card pool by color, type, rarity, set, cost range, keyword, ability text, or subtype โ with pagination.
find_song_synergiesFinds every character that can sing a given song (or a raw cost threshold), split into Singer-keyword discount picks and plain cost-qualifiers. Optionally flags which ones you own.
filter_collectionFilters your collection to cards legal in a given format: `core`, `infinity`, `core_zh`, `core_ja`, or `poorcana`.
MCP server that connects Claude to Disney Lorcana card data. Export your collection from TCGPlayer, hand it to Claude, and get it fully enriched with ink cost, stats, keywords, abilities, and format legality โ plus a ready-to-import file for dreamborn.ink.
What it does: plug this into Claude and it becomes a Disney Lorcana expert that knows your actual collection โ no more tab-switching between TCGPlayer, dreamborn.ink, and a wiki.
Once it's connected, you can just talk to Claude like:
Everything reads from public card APIs plus your own exported CSV โ no account, no login, nothing to configure.
Claude Desktop โ one click: download lorcana-mcp.mcpb and double-click it (or Settings โ Extensions โ Install extensionโฆ). No terminal, no Python install, nothing to configure.
Everything else โ one command:
1. Connect it (uvx fetches it on demand โ install uv first, or pip install lorcana-mcp and drop the uvx):
Using Claude Desktop config, Cursor, VS Code, Windsurf, Cline, or Zed instead? Every client is covered in docs/INSTALL.md.
2. Talk to it: Export your collection from TCGPlayer (My Account โ My Collection โ Export), then just say:
"Enrich my collection at /path/to/your/export.csv"
That's it โ Claude does the rest. Everything below is reference detail for when you want more control.
Twelve tools are available in Claude once the server is running:
| Tool | What it does |
|---|---|
enrich_csv | Enriches a raw TCGPlayer export with Ink, Cost, Type, Subtypes, STR/WIL/Lore, Inkable, Keywords, and Abilities. Writes an enriched CSV and a dreamborn.ink-ready import file next to the input. refresh_prices=True also refreshes TCG Market Price with a live tcgcsv.com lookup. |
lookup_card | Looks up any card by name. Returns full stats, ability text, format legality, and card image URL. |
resolve_card | Fuzzy-resolves an informal, misspelled, or subtitle-less card name (e.g. "goofy musketeer", "elsa"). Returns a single confident match, a ranked top-3 to disambiguate, or nothing found. |
list_printings | Lists every printing of a card โ or every card sharing a character name โ side by side: set, number(s), cost, stats, rarity, per-format legality, and cheapest market price. Optional fmt adds a โ/โ legality column. For "which printing of X is Core-legal / cheapest?". |
search_cards | Searches the full card pool by color, type, rarity, set, cost range, keyword, ability text, or subtype โ with pagination. |
find_song_synergies | Finds every character that can sing a given song (or a raw cost threshold), split into Singer-keyword discount picks and plain cost-qualifiers. Optionally flags which ones you own. |
filter_collection | Filters your collection to cards legal in a given format: core, infinity, core_zh, core_ja, or poorcana. |
audit_csv | Compares an enriched collection against live API data and reports any stale or wrong fields. |
analyze_deck | Analyzes a raw deck list (4x Card Name per line) for ink curve, inkable split, color split, card types, estimated lore/turn, and Core Constructed legality (60-card min, max 4 copies, โค2 ink colors). |
what_am_i_missing | Compares a deck list against your collection: what you already own, what's missing or short, and a live TCGPlayer cost estimate (via tcgcsv.com) to complete it. |
build_deck | Automatically assembles a legal, curve-balanced ~60-card decklist for an ink pair/format, in one of 3 modes: collection (only cards you own), ideal (best deck regardless of ownership, priced to complete if you pass a collection CSV), or market (best deck, fully priced, ignoring ownership). Also builds for format="coconut" โ Ravensburger's multiplayer singleton beta (up to 3 ink colors, 1 copy of everything except your chosen Coconut's associated character at up to 4). A heuristic curve/keyword-value builder, not a synergy/combo detector. |
get_meta | Returns a hand-maintained Core Constructed metagame snapshot: every two-ink pair's tier, rough meta share, and playstyle, plus recent tournament results โ optionally filtered to one pair (ink_colors="Emerald,Steel"). With event= ("nac", "asia", "kobe", โฆ) returns that tournament's full standings and decklists instead. Not a live fetch โ there's no free structured feed for this the way there is for card data โ so it's a versioned snapshot bundled at release time, and says so explicitly in its own output. |
| Directory | Link |
|---|---|
| MCP Registry (official) | registry.modelcontextprotocol.io |
| mcp.so | mcp.so/server/lorcana-mcp |
| PyPI | pypi.org/project/lorcana-mcp |
You don't have to install anything if you use uvx (below) or the Claude Desktop bundle. To install the package explicitly:
From source:
Claude Desktop bundle: lorcana-mcp.mcpb on the releases page โ a one-click install that bundles its own runtime. Built from packaging/mcpb/.
lorcana-mcp is a local stdio server โ it runs on your machine, no hosting or API key. docs/INSTALL.md is the full guide, with copy-paste config for every client. The short version:
| Client | Supported | How |
|---|---|---|
| Claude Desktop | โ | One-click .mcpb bundle, or config below |
| Claude Code | โ | claude mcp add lorcana -- uvx lorcana-mcp serve |
| Cursor ยท VS Code ยท Windsurf ยท Cline ยท Zed | โ | stdio config โ see docs/INSTALL.md |
| Any other stdio MCP client | โ | Command: uvx lorcana-mcp serve (or lorcana-mcp serve if pip-installed) |
| Claude.ai (web) ยท ChatGPT | โ | Those need a hosted remote server; this one is local-only โ see docs/INSTALL.md |
Easiest is the one-click bundle. To wire it up by hand instead, edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\, or Settings โ Developer โ Edit Config):
Use "command": "lorcana-mcp", "args": ["serve"] if you installed with pip rather than uv. Fully quit and reopen Claude Desktop after saving.
Once the server is connected, just talk to Claude naturally. No slash commands needed.
Export your collection from TCGPlayer โ My Collection โ Export CSV, then:
"Enrich my collection at /Users/me/Downloads/Lorcana_063026.csv"
Claude will fetch card data from the APIs and write two files next to your input:
enriched_Lorcana_063026.csv โ your collection with 10 new columnsdreamborn_Lorcana_063026.csv โ ready to import at dreamborn.inkOn re-runs, pass the previous enriched file as a cache to skip already-seen cards:
"Enrich /Users/me/Downloads/Lorcana_new.csv using /Users/me/lorcana/enriched_Lorcana_old.csv as cache"
To refresh prices on demand without re-exporting from TCGPlayer:
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/disney-lorcana-tcg-collection)<a href="https://allmcps.com/mcp/disney-lorcana-tcg-collection"><img src="https://allmcps.com/api/badge/disney-lorcana-tcg-collection?style=directory" alt="Disney Lorcana TCG Collection on AllMCPs" /></a>