Connect the MCP
Give Magic: The Gathering AI Deck Builder to your AI in a few minutes. Streamable HTTP endpoint: https://mcpnest.fr/api/mcp
Auth: Authorization: Bearer mtg_… or X-API-Key.
Claude
- Create an API key in the dashboard.
- Add a custom remote MCP connector with the URL above.
- Pass your key as a Bearer token in the connector config.
{
"mcpServers": {
"mtg": {
"url": "https://mcpnest.fr/api/mcp",
"headers": {
"Authorization": "Bearer mtg_YOUR_KEY"
}
}
}
}Cursor
Drop this into .cursor/mcp.json:
{
"mcpServers": {
"mtg": {
"url": "https://mcpnest.fr/api/mcp",
"headers": {
"Authorization": "Bearer mtg_YOUR_KEY"
}
}
}
}ChatGPT
Point a Custom GPT / Actions MCP connector at the same remote endpoint. Authenticate with your Bearer API key (depends on your OpenAI plan’s MCP support).
What you get
- Free — ask for cards in plain language with
search_cards/get_card. No Scryfall syntax required. - Pro — build-around seeds (
find_synergies), inventory a list and pull gap fillers (deck_gaps), check format legality (validate_deck). - Your AI stays in charge of the brew. The MCP returns cards and deck facts — not canned “search plans” — so you don’t get lost across tens of thousands of names.
- Responses include ready-to-render
markdowncard tiles (Scryfall art) instead of raw JSON dumps.
Need a key? Sign up.