{ "name": "@chrischall/pickuppatrol-mcp", "version": "0.2.1", "license": "MIT", "mcpName": "io.github.chrischall/pickuppatrol-mcp", "description": "PickUp Patrol MCP server for Claude — developed and maintained by AI (Claude Code)", "author": "Claude Code (AI) ", "repository": { "type": "git", "url": "git+https://github.com/chrischall/pickuppatrol-mcp.git" }, "keywords": [ "mcp", "model-context-protocol", "claude", "ai", "pickuppatrol", "school", "dismissal", "carpool", "parents" ], "type": "module", "engines": { "node": ">=22.0.0" }, "bin": { "pickuppatrol-mcp": "dist/index.js" }, "main": "dist/lib.js", "types": "dist/lib.d.ts", "exports": { ".": { "types": "./dist/lib.d.ts", "import": "./dist/lib.js" }, "./package.json": "./package.json" }, "publishConfig": { "access": "public" }, "files": [ "dist", ".claude-plugin", "skills", ".mcp.json", "server.json", "mint.yaml" ], "scripts": { "build": "tsc && npm run bundle", "bundle": "esbuild src/index.ts --bundle --platform=node --format=esm --external:dotenv --outfile=dist/bundle.js", "dev": "node dist/index.js", "typecheck": "tsc --noEmit", "test": "npm run typecheck && vitest run", "test:coverage": "npm run typecheck && vitest run --coverage", "test:watch": "vitest" }, "dependencies": { "@chrischall/mcp-utils": "^0.26.1", "@modelcontextprotocol/sdk": "^1.30.0", "dotenv": "^17.4.0", "zod": "^4.5.4" }, "devDependencies": { "@types/node": "^26.1.1", "@vitest/coverage-v8": "^5.0.0", "esbuild": "^0.28.0", "typescript": "^7.0.2", "vitest": "^5.0.0" } }