Scryfall MCP Server
Servidor MCP de Scryfall
Un servidor de Protocolo de Contexto de Modelo (MCP) para interactuar con la API de Scryfall . Proporciona herramientas para consultar detalles, decisiones y precios de las cartas de Magic: The Gathering.

Características
tarjetas de búsqueda
Realiza una búsqueda de texto en Scryfall. Devuelve una lista de cartas coincidentes.obtener_tarjeta_por_id
Recupere una carta directamente a través de su UUID de Scryfall.obtener_tarjeta_por_nombre
Recupere una tarjeta con el nombre exacto en inglés.tarjeta aleatoria
Obtén una carta aleatoria de toda la base de datos de Scryfall.obtener_resoluciones
Recupere resoluciones oficiales para una carta, que pueden aclarar interacciones o reglas de cartas.obtener_precios_por_id
Recupere información de precios actual (USD, USD foil, EUR, TIX) para una carta determinada por ID de Scryfall.obtener_precios_por_nombre
Recupere información de precios actual (USD, USD foil, EUR, TIX) para una tarjeta determinada por nombre exacto.
Related MCP server: Scryfall MCP Server
Uso
El servidor se puede ejecutar en dos modos:
Modo estándar stdio (predeterminado)
Modo de eventos enviados por el servidor (SSE) con puntos finales HTTP
Uso de NPX
Si tiene Node.js instalado localmente:
# Stdio mode
npx scryfall-mcp-server
# SSE mode
npx scryfall-mcp-server --sseConectarse al servidor
Modo estudio
Su aplicación o entorno (como Claude Desktop) puede comunicarse directamente a través de stdio con el servidor.
Modo SSE
Al ejecutar en modo SSE (con --sse ), puede conectarse usando la CLI de MCP:
npx @wong2/mcp-cli --sse http://localhost:3000/sseEl servidor estará disponible en:
Punto final SSE:
http://localhost:3000/ssePunto final del mensaje:
http://localhost:3000/messages
Integración en claude_desktop_config.json
Fragmento de ejemplo para el modo stdio:
{
"mcpServers": {
"scryfall": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/scryfall"]
}
}
}O con npx:
{
"mcpServers": {
"scryfall": {
"command": "npx",
"args": ["scryfall-mcp-server"]
}
}
}Construyendo desde Docker
docker build -t mcp/scryfall .Luego puedes ejecutar en modo stdio:
docker run -i --rm mcp/scryfallO en modo SSE:
docker run -i --rm -p 3000:3000 mcp/scryfall --sseLicencia
Con licencia MIT.
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 Servers
- FlicenseNot gradedqualityDmaintenanceProvides tools for accessing the Semantic Scholar API to search papers, retrieve paper and author details, and fetch citations and references through the Model Context Protocol.78
- AlicenseAqualityBmaintenanceA comprehensive Model Context Protocol server that integrates with the Scryfall API to provide Magic: The Gathering card data to AI assistants like Claude.141MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to search and retrieve Magic: The Gathering card data through the Scryfall API. Supports card searches, random card generation, autocomplete, set listings, and rulings lookup.221MIT
- AlicenseAqualityCmaintenanceEnables Claude to search and retrieve Magic: The Gathering card details, prices, set information, and random cards from Scryfall's database through natural language.41MIT
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/cryppadotta/scryfall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server