{
  "markdown": "# Mythic Index MCP Server\n\n<!-- mcp-name: io.github.wizkid17/mythic-index-mcp -->\n\nMagic: The Gathering card prices, deck analysis, and investment intelligence — powered by live data from 5 vendors covering 99K+ cards.\n\nConnect this MCP server to Claude Desktop, Claude Code, or any MCP-compatible AI assistant to get real-time MTG card pricing, deck cost analysis, sealed product EV calculations, and investment insights.\n\n## What You Can Do\n\n**Ask about prices:**\n> \"What's the current price of Sheoldred, the Apocalypse?\"\n\n**Build decks on a budget:**\n> \"Find me black creatures with deathtouch under $5 legal in Modern\"\n\n**Price a full decklist:**\n> \"Price this deck: 4 Lightning Bolt, 4 Goblin Guide, 20 Mountain — check Modern legality\"\n\n**Evaluate sealed products:**\n> \"Is the Modern Horizons 3 Collector Booster Box worth buying at $280?\"\n\n**Track investments:**\n> \"What cards spiked this week? Show me Reserved List cards under $50\"\n\n**Understand strategy:**\n> \"What role does Counterspell play? Find me blue counter spells for Commander under $3\"\n\n## Quick Start\n\n### Prerequisites\n\n- Python 3.10+ (the MCP SDK requires 3.10 or newer)\n- Claude Desktop, Claude Code, or any MCP-compatible client\n\n### Install\n\nThe published package runs with no manual install via [`uv`](https://docs.astral.sh/uv/):\n\n```bash\nuvx mythic-index-mcp\n```\n\nOr install from source:\n\n```bash\ngit clone https://github.com/wizkid17/mythic-index-mcp.git\ncd mythic-index-mcp\npip install -r requirements.txt\n```\n\n### Configure Claude Desktop\n\nEdit your Claude Desktop config file:\n\n**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`\n**Windows:** `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"mythic-index\": {\n      \"command\": \"uvx\",\n      \"args\": [\"mythic-index-mcp\"]\n    }\n  }\n}\n```\n\nRestart Claude Desktop. The Mythic Index tools will appear in the tools menu (hammer icon).\n\n### Configure Claude Code\n\n```bash\nclaude mcp add mythic-index uvx mythic-index-mcp\n```\n\n### Use Your Own API Key (optional)\n\nThe server includes a public read-only key with rate limiting. For higher rate limits, get your own key and set it as an environment variable:\n\n```json\n{\n  \"mcpServers\": {\n    \"mythic-index\": {\n      \"command\": \"uvx\",\n      \"args\": [\"mythic-index-mcp\"],\n      \"env\": {\n        \"MYTHIC_INDEX_API_KEY\": \"mi_your_key_here\"\n      }\n    }\n  }\n}\n```\n\n## Available Tools (21)\n\n### Search & Discovery\n| Tool | Description |\n|------|-------------|\n| `search_cards` | Fuzzy name search — handles typos and partial names |\n| `find_cards` | Advanced filters: oracle text, color, type, CMC, price, format, Reserved List |\n| `browse_cards` | Browse by price, name, or newest sets |\n| `list_sets` | List and search all 971 MTG sets |\n\n### Pricing\n| Tool | Description |\n|------|-------------|\n| `get_card_price` | Current prices across TCGPlayer, Card Kingdom, CardMarket, CardSphere, CardHoarder |\n| `get_price_history` | Price trends over 7/30/90/365 days |\n\n### Sets & Sealed Products\n| Tool | Description |\n|------|-------------|\n| `get_set_stats` | Rarity distribution, avg price, total value, chase card, top 10 |\n| `search_sealed` | Find booster boxes, packs, bundles, commander decks |\n| `get_sealed_ev` | Full EV breakdown with tier analysis (bulk → jackpot) |\n\n### Investment\n| Tool | Description |\n|------|-------------|\n| `top_movers` | Biggest price gains and drops over any period |\n| `find_arbitrage` | Cross-vendor profit opportunities (buy retail, sell buylist) |\n| `reserved_list_tracker` | Browse Reserved List cards — never reprinted |\n\n### Deck Analysis\n| Tool | Description |\n|------|-------------|\n| `price_deck` | Full decklist pricing: total cost, vendor comparison, mana curve, legality, budget swaps |\n| `suggest_budget_alternatives` | Find cheaper cards with similar type and CMC |\n| `analyze_mana_curve` | Curve visualization, land count evaluation, color source requirements |\n\n### Strategy\n| Tool | Description |\n|------|-------------|\n| `check_legality` | Format legality: Standard, Modern, Pioneer, Commander, Legacy, Vintage, Pauper |\n| `evaluate_card` | Strategic roles, keyword abilities, archetype fit |\n| `find_cards_by_role` | Search by role: removal, ramp, card draw, burn, counter, tutor, and 7 more |\n\n### Rules\n| Tool | Description |\n|------|-------------|\n| `search_rules` | Full-text search the official Comprehensive Rules + glossary |\n| `get_rule` | Get a rule by number with its sub-rules (e.g. `509.1`) |\n\n### System\n| Tool | Description |\n|------|-------------|\n| `get_api_status` | Platform health and sync status |\n\n## Data Coverage\n\n| Metric | Value |\n|--------|-------|\n| Cards | 99,000+ |\n| Sets | 971 |\n| Price sources | TCGPlayer, Card Kingdom, CardMarket, CardSphere, CardHoarder |\n| Price listings | 534,000+ |\n| Sealed products | 3,900+ with EV calculations |\n| Cards with format legality | 99,287 |\n| Reserved List cards | 1,096 |\n| Update frequency | Daily at 3 AM Lima (UTC-5) |\n\n## Using as a Claude Project\n\nFor the best experience, create a Claude Project and add the contents of `skill/system_prompt.md` as the Project Instructions. This gives Claude deep MTG domain knowledge on top of the live data tools.\n\n## Self-Hosting\n\nIf you run your own Mythic Index API instance:\n\n```bash\nexport MYTHIC_INDEX_API_URL=http://localhost:8000\nexport MYTHIC_INDEX_API_KEY=your-key\npython3 mcp_server.py\n```\n\nFor remote SSE hosting:\n\n```bash\npython3 mcp_server.py --sse --port 8080\n```\n\n## API\n\nThis MCP server connects to the [Mythic Index API](https://api.mythic-index.com). Documentation: [api.mythic-index.com/mtg-api/docs](https://api.mythic-index.com/mtg-api/docs)\n\n## License\n\nMIT — see [LICENSE](LICENSE)\n\n## Links\n\n- **API Docs:** https://api.mythic-index.com/mtg-api/docs\n- **Admin Console:** https://api.mythic-index.com/admin\n- **MCP Protocol:** https://modelcontextprotocol.io\n- **Anthropic:** https://anthropic.com",
  "bytes": 5911,
  "sha": "715731ada4daa8ebe08600e1b0d2d164fded5b6e8516f802d2132d2dcbb68525",
  "repo_slug": "wizkid17/mythic-index-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_wizkid17_mythic_index_mcp_acc738a3/readme"
}