{ "name": "@mealmastery/mcp-server", "version": "0.2.4", "mcpName": "io.github.MealMasteryAI/mcp-server", "description": "MCP server for MealMastery AI meal planning - integrate with Claude Desktop, ChatGPT, VS Code, and other AI agents", "license": "MIT", "type": "module", "bin": { "mealmastery-mcp-server": "dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true})\"", "build": "npm run clean && tsc", "dev": "tsc --watch", "start": "node dist/index.js", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/MealMasteryAI/mcp-server.git" }, "homepage": "https://www.mealmastery.ai", "bugs": { "url": "https://github.com/MealMasteryAI/mcp-server/issues" }, "keywords": [ "mcp", "model-context-protocol", "mealmastery", "meal-planning", "ai", "claude", "recipes", "grocery" ], "author": "MealMastery Inc. ", "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "zod": "^3.24.0" }, "devDependencies": { "@types/node": "^22.0.0", "typescript": "^5.8.0" }, "engines": { "node": ">=18" } }