{ "name": "lego-oracle", "version": "0.1.2", "mcpName": "io.github.gregario/lego-oracle", "description": "LEGO sets, parts, minifigs, and inventories as an MCP server", "type": "module", "bin": { "lego-oracle": "dist/server.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc && mkdir -p dist/data && cp src/data/schema.sql dist/data/schema.sql && (test -f src/data/lego.sqlite || npm run fetch-data) && cp src/data/lego.sqlite dist/data/lego.sqlite && chmod +x dist/server.js", "dev": "tsx src/server.ts", "lint": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "fetch-data": "tsx scripts/fetch-data.ts", "inspect": "npx @modelcontextprotocol/inspector node dist/server.js", "prepublishOnly": "npm run build && npm test" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12", "better-sqlite3": "^12.8", "csv-parse": "^5.6", "zod": "^3.25" }, "devDependencies": { "@types/better-sqlite3": "^7.6", "@types/node": "^22.0", "tsx": "^4.0", "typescript": "^5.7", "vitest": "^3.0" }, "engines": { "node": ">=18" }, "repository": { "type": "git", "url": "git+https://github.com/gregario/lego-oracle.git" }, "homepage": "https://github.com/gregario/lego-oracle#readme", "bugs": { "url": "https://github.com/gregario/lego-oracle/issues" }, "license": "MIT", "keywords": [ "mcp", "model-context-protocol", "lego", "rebrickable", "minifig", "bricks" ] }