loading…
Search for a command to run...
loading…
MCP server for I Want My MTG that enables conversational search of Magic: The Gathering cards/sets and inventory management via API tools.
MCP server for I Want My MTG that enables conversational search of Magic: The Gathering cards/sets and inventory management via API tools.
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
(Until published to npm, use the local install instructions below.)
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_..." }
}
}
}
| 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
Выполни в терминале:
claude mcp add iwantmymtg-mcp -- npx