{ "name": "mtg-oracle", "version": "0.2.2", "description": "Magic: The Gathering MCP server with card search, deck analysis, and format intelligence", "type": "module", "license": "MIT", "main": "dist/server.js", "bin": { "mtg-oracle": "dist/server.js" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.js.map", "dist/**/*.d.ts.map", "dist/data/schema.sql" ], "scripts": { "build": "tsc && cp src/data/schema.sql dist/data/schema.sql && chmod +x dist/server.js", "test": "vitest run", "test:watch": "vitest", "start": "node dist/server.js", "prepublishOnly": "npm run build" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "@space-cow-media/spellbook-client": "^5.3.5", "better-sqlite3": "^12.8.0", "zod": "^3.24.2" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/node": "^22.13.10", "typescript": "^5.8.2", "vitest": "^3.1.0" }, "engines": { "node": ">=18" }, "mcpName": "io.github.gregario/mtg-oracle", "repository": { "type": "git", "url": "git+https://github.com/gregario/mtg-oracle.git" }, "homepage": "https://github.com/gregario/mtg-oracle#readme", "bugs": { "url": "https://github.com/gregario/mtg-oracle/issues" }, "keywords": [ "mcp", "magic-the-gathering", "mtg", "commander", "edh", "scryfall", "claude", "ai" ] }