Server data from the Official MCP Registry
Query Magic: The Gathering cards, sets, and prices and manage your I Want My MTG collection.
Query Magic: The Gathering cards, sets, and prices and manage your I Want My MTG collection.
This MCP server for Magic: The Gathering card/collection management has solid architecture with appropriate authentication design. The server properly separates authenticated and unauthenticated tools, uses environment variables for sensitive credentials, and implements token-based API authentication. Minor code quality improvements could be made around error handling and input validation, but no critical security vulnerabilities were identified. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
3 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: IWMM_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-matthewdtowles-iwantmymtg-mcp": {
"env": {
"IWMM_API_KEY": "your-iwmm-api-key-here"
},
"args": [
"-y",
"iwantmymtg-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP server for I Want My MTG. Exposes IWMM's API as tools so Claude Desktop, Claude Code, Cursor, and other MCP clients can search Magic: The Gathering cards/sets and manage a user's collection conversationally.
Status: v0 scaffold. The set of tools below is the v1 surface; coverage will expand to match the API.

More authenticated tools (transactions, portfolio breakdowns, price alerts, notifications) are coming - see the project roadmap.
Requires Node 20+.
npx iwantmymtg-mcp
Or install globally if you prefer:
npm install -g iwantmymtg-mcp
iwantmymtg-mcp
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json; Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"iwmm": {
"command": "npx",
"args": ["-y", "iwantmymtg-mcp"],
"env": {
"IWMM_API_KEY": "iwm_live_..."
}
}
}
}
IWMM_API_KEY is optional - read-only tools work without it. Create a key at https://iwantmymtg.net/user/api-keys.
Add to .mcp.json in your project (or ~/.claude/.mcp.json globally):
{
"mcpServers": {
"iwmm": {
"command": "npx",
"args": ["-y", "iwantmymtg-mcp"],
"env": { "IWMM_API_KEY": "iwm_live_..." }
}
}
}
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json in your project:
{
"mcpServers": {
"iwmm": {
"command": "npx",
"args": ["-y", "iwantmymtg-mcp"],
"env": { "IWMM_API_KEY": "iwm_live_..." }
}
}
}
After saving, restart Cursor and confirm iwmm appears under Settings -> Features -> MCP Servers.
See examples/ for walkthroughs of common flows (card lookup, inventory, transactions, portfolio insights, price alerts).
| Env var | Default | Purpose |
|---|---|---|
IWMM_API_KEY | (unset) | Personal API key. Required only for authenticated tools. |
IWMM_BASE_URL | https://iwantmymtg.net | Override for self-hosted or local-dev IWMM instances. |
npm install
npm run build
node dist/index.js
Or with tsx for live reload:
npm install
npx tsx src/index.ts
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.