{ "name": "plan-to-eat-mcp", "version": "0.7.3", "mcpName": "io.github.alex-zwingli/plan-to-eat", "description": "Unofficial Plan to Eat (plantoeat.com) JSON API client, CLI, and Model Context Protocol server.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "plan-to-eat": "dist/cli/main.js", "plan-to-eat-mcp": "dist/mcp/server.js" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "CHANGELOG.md", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "watch": "tsc --watch", "start": "node dist/mcp/server.js", "cli": "node dist/cli/main.js", "verify": "node dist/scripts/verify.js", "verify:planner": "node dist/scripts/planner_verify.js", "check:docs": "node dist/scripts/check_docs.js", "test": "node dist/scripts/test_server.js", "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"" }, "keywords": [ "plan-to-eat", "plantoeat", "mcp", "model-context-protocol", "recipes", "meal-planner", "cli" ], "author": "Alex Zwingli", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/alex-zwingli/plan-to-eat-mcp.git" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "dotenv": "^17.4.2", "zod": "^4.4.1" }, "devDependencies": { "@types/node": "^25.6.0", "playwright": "^1.59.1", "typescript": "^6.0.3" }, "engines": { "node": ">=18" }, "type": "commonjs", "homepage": "https://github.com/alex-zwingli/plan-to-eat-mcp#readme", "bugs": { "url": "https://github.com/alex-zwingli/plan-to-eat-mcp/issues" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" } }