{
"name": "scryfall-mcp-server",
"version": "0.1.0",
"description": "MCP server for interacting with the Scryfall MTG API",
"license": "MIT",
"author": "Your Name",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"scryfall-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "NODE_NO_WARNINGS=1 tsx watch index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"node-fetch": "^3.3.1",
"yargs": "^17.7.2",
"express": "^4.18.2"
},
"devDependencies": {
"@types/node": "^22",
"@types/node-fetch": "^2.6.2",
"@types/yargs": "^17.0.32",
"@types/express": "^4.17.21",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"tsx": "^4.7.0"
}
}