moxfield-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., "@moxfield-mcpsearch for Modern decks containing Urza's Saga"
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.
Moxfield MCP Server
A local MCP server that gives Claude access to Moxfield's deckbuilding platform data — public deck search, deck card lists, and card prices.
Moxfield has no official public API. This server calls the same JSON endpoints (api2.moxfield.com) that moxfield.com's own frontend uses. These endpoints are undocumented and unofficial — they may change or break without notice. No API key is needed; requests include browser-like headers to satisfy Cloudflare.
Tools
moxfield_search_decks— search public decklists by keyword, optionally filtered by format; returns deck names, authors, like/view counts, and URLsmoxfield_get_deck— fetch a specific deck's full card list (commanders, mainboard, sideboard) with mana costs, type lines, and per-card USD pricesmoxfield_search_cards— search Moxfield's card database by name or keyword, returning oracle text, legalities, and prices from multiple vendors
Related MCP server: Scryfall MCP Server
Setup
1. Install dependencies
Requires Python 3.10+.
cd "moxfield_mcp"
pip install -r requirements.txt2. Test it directly (optional)
python server.pyWith no PORT environment variable set, this runs over stdio (for the MCP Inspector or a classic Claude Desktop config). You can also exercise it with the MCP Inspector:
npx @modelcontextprotocol/inspector python server.py3. Register it as a connector in Cowork (this project)
Cowork's "Add custom connector" dialog only accepts a remote MCP server URL — it can't point at a local script. server.py runs over streamable-HTTP automatically whenever a PORT environment variable is present (which is how Render and most PaaS hosts tell an app what to bind to). That's what makes it deployable.
Deploy to Render (free tier):
Push the contents of this
moxfield-mcpfolder to a new GitHub repo (the folder's contents should be the repo root —server.py,requirements.txt, andrender.yamlat the top level).cd "moxfield-mcp" git init git add . git commit -m "Moxfield MCP server" git branch -M main git remote add origin https://github.com/<your-username>/moxfield-mcp.git git push -u origin mainGo to render.com → sign in with GitHub → New → Blueprint → select your
moxfield-mcprepo. Render will readrender.yamland configure the service automatically. Click Apply.Wait for the first deploy to finish (a few minutes). Render gives you a URL like
https://moxfield-mcp.onrender.com.Sanity-check it's alive by visiting
https://moxfield-mcp.onrender.com/mcpin a browser — a 4xx/JSON error about missing headers is fine; that means the MCP endpoint is up.In Cowork, open Settings → Connectors → Add custom connector, and paste:
Name: Moxfield (or anything you like)
Remote MCP server URL:
https://moxfield-mcp.onrender.com/mcpLeave Advanced settings (OAuth) blank — this server has no auth.
Save. The Moxfield tools should now show up as a connector you can enable in any conversation.
Note on the free tier: Render's free web services spin down after ~15 minutes of inactivity and take 30-60 seconds to wake back up on the next request (cold start).
Notes
Moxfield's API is Cloudflare-protected. This server mimics browser headers to bypass the bot check — this may break if Moxfield changes their Cloudflare configuration.
Private/unlisted decks will return a 404 error; only public decks are accessible without authentication.
Prices are Moxfield's aggregated vendor data and update daily.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
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 Connectors
Live TCG card and decklist prices for AI assistants. 22+ games, no account, ready-to-buy links.
Run UX research from Claude — create card sort studies, list studies, pull headline stats.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
Search, read, create and edit your Memol notes from Claude. Team note-taking with AI search.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables Magic: The Gathering players to manage decks and access card information through Claude, supporting gameplay actions like drawing cards and mulligans while providing Scryfall API integration for card lookups.15-
- AlicenseAqualityCmaintenanceEnables Claude to search and retrieve Magic: The Gathering card details, prices, set information, and random cards from Scryfall's database through natural language.42MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying Yu-Gi-Oh! TCG card data, such as card information, sets, and prices, through natural language.19MIT
- FlicenseNot gradedqualityCmaintenanceEnables Claude to access EDHREC's Commander deckbuilding data, including recommended cards, synergies, combos, and average decklists.-
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/Raunak1571/moxfield-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server