UNPKG

pokemon-pocket-mcp-server

Version:

MCP server for querying Pokemon Pocket TCG cards with DuckDB

60 lines (59 loc) 1.41 kB
{ "name": "pokemon-pocket-mcp-server", "version": "1.2.0", "description": "MCP server for querying Pokemon Pocket TCG cards with DuckDB", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "license": "MIT", "author": "Pokemon Pocket MCP Contributors", "bin": { "pokemon-pocket-mcp": "./dist/index.js" }, "files": [ "dist", "data", "README.md" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "https://github.com/briansunter/pokeclaude.git", "directory": "mcp-server" }, "keywords": [ "mcp", "pokemon", "pokemon-pocket", "tcg", "duckdb", "model-context-protocol" ], "scripts": { "prebuild": "mkdir -p data && cp ../data/pokemon_pocket_cards.csv data/", "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "typecheck": "tsc --noEmit", "test": "npm run prebuild && bun test --timeout 120000", "test:manual": "bun run test-server.ts" }, "dependencies": { "@duckdb/node-api": "^1.4.0-r.1", "@modelcontextprotocol/sdk": "^1.0.4", "uuid": "^11.0.3", "zod": "^3.22.4" }, "devDependencies": { "@types/node": "^22.10.2", "@types/uuid": "^10.0.0", "tsx": "^4.19.2", "typescript": "^5.7.2" }, "engines": { "node": ">=18.0.0" } }