Scryfall MCP Server
Scryfall MCP 服务器
用于与Scryfall API 交互的模型上下文协议 (MCP)服务器。它提供用于查询万智牌卡牌详情、卡牌规则和价格信息的工具。

特征
搜索卡片
在 Scryfall 中执行基于文本的搜索。返回匹配的卡牌列表。通过 ID 获取卡号
直接通过 Scryfall UUID 检索卡片。按名称获取卡
通过准确的英文名称检索卡片。随机卡
从整个 Scryfall 数据库中获取一张随机卡。获取裁决
检索卡片的官方裁决,这可能会阐明卡片的交互或规则。通过 ID 获取价格
通过 Scryfall ID 检索给定卡的当前定价信息(美元、美元箔、欧元、TIX)。按名称获取价格
通过确切名称检索给定卡的当前定价信息(美元、美元箔、欧元、TIX)。
Related MCP server: Scryfall MCP Server
用法
该服务器可以以两种模式运行:
标准 stdio 模式(默认)
带有 HTTP 端点的服务器发送事件 (SSE) 模式
使用 NPX
如果您已在本地安装了 Node.js:
# Stdio mode
npx scryfall-mcp-server
# SSE mode
npx scryfall-mcp-server --sse连接到服务器
标准输入输出模式
您的应用程序或环境(如 Claude Desktop)可以通过 stdio 直接与服务器通信。
SSE模式
在 SSE 模式(使用--sse )下运行时,您可以使用 MCP CLI 进行连接:
npx @wong2/mcp-cli --sse http://localhost:3000/sse该服务器将在以下位置可用:
SSE 端点:
http://localhost:3000/sse消息端点:
http://localhost:3000/messages
claude_desktop_config.json 中的集成
stdio 模式的示例代码片段:
{
"mcpServers": {
"scryfall": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/scryfall"]
}
}
}或者使用 npx:
{
"mcpServers": {
"scryfall": {
"command": "npx",
"args": ["scryfall-mcp-server"]
}
}
}从 Docker 构建
docker build -t mcp/scryfall .然后你就可以在 stdio 模式下运行:
docker run -i --rm mcp/scryfall或者在 SSE 模式下:
docker run -i --rm -p 3000:3000 mcp/scryfall --sse执照
根据 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