package.json•654 B
{
"name": "scryfall-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "MCP server for Scryfall (Magic: The Gathering) API",
"bin": {
"scryfall-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js",
"start:sse": "node dist/sse.js",
"dev": "node --enable-source-maps dist/index.js"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.11",
"typescript": "^5.5.4"
}
}