@kaminaduck/scryfall-mcp-server
Version:
A Model Context Protocol (MCP) server that provides access to the Scryfall API for Magic: The Gathering card data
88 lines (87 loc) • 2.59 kB
JSON
{
"name": "@kaminaduck/scryfall-mcp-server",
"version": "1.0.10",
"description": "A Model Context Protocol (MCP) server that provides access to the Scryfall API for Magic: The Gathering card data",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"bin": {
"scryfall-mcp-server": "dist/index.js",
"scryfall-mcp-server-windows": "src/windowsWrapper.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"build:watch": "tsc --watch",
"dev": "ts-node src/index.ts",
"debug": "node --inspect dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:mcp": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"start": "node dist/index.js",
"test:windows": "jest tests/windows-env.test.ts",
"setup:windows": "powershell -ExecutionPolicy Bypass -File scripts/setup-windows.ps1",
"test:env:windows": "powershell -ExecutionPolicy Bypass -File scripts/test-env-windows.ps1",
"test:wrapper": "node src/windowsWrapper.js --test"
},
"keywords": [
"mcp",
"model-context-protocol",
"scryfall",
"magic-the-gathering",
"mtg",
"card-game",
"api-client"
],
"author": "Charlie Rogers",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kaminaduck/scryfall-mcp.git"
},
"bugs": {
"url": "https://github.com/kaminaduck/scryfall-mcp/issues"
},
"homepage": "https://github.com/kaminaduck/scryfall-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"better-sqlite3": "^12.2.0",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^29.5.8",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.9.4",
"@types/node-fetch": "^2.6.9",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"dist/**/*",
"src/windowsWrapper.js",
"scripts/*.ps1",
"scripts/*.bat",
"docs/*.md",
"README.md",
"LICENSE"
]
}