UNPKG

cook-mcp-windy

Version:

HowToCook MCP Server - Intelligent Chinese recipe management and meal planning for AI assistants

80 lines (79 loc) 2.21 kB
{ "name": "cook-mcp-windy", "version": "1.0.5", "description": "HowToCook MCP Server - Intelligent Chinese recipe management and meal planning for AI assistants", "main": "dist/index.js", "type": "module", "bin": { "cook-mcp-windy": "dist/cli.js", "cook-mcp-server": "dist/start-mcp.js" }, "scripts": { "build": "tsc && npm run copy-assets", "copy-assets": "node -e \"const fs=require('fs'); const path=require('path'); fs.mkdirSync('dist/data', {recursive:true}); fs.copyFileSync('src/data/sampleRecipes.json', 'dist/data/sampleRecipes.json');\"", "dev": "tsx src/index.ts", "start": "node dist/index.js", "cli": "node dist/cli.js", "clean": "rimraf dist", "rebuild": "npm run clean && npm run build", "test": "jest", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepublishOnly": "npm run build", "postinstall": "echo 'HowToCook MCP Server installed successfully! Use: npx cook-mcp-windy --help'" }, "keywords": [ "mcp", "model-context-protocol", "recipes", "cooking", "meal-planning", "howtocook", "chinese-cuisine", "ai-assistant", "claude", "npx", "cli" ], "author": "Windy Freedom <windy.freedom@example.com>", "license": "MIT", "homepage": "https://github.com/windy-freedom/cook#readme", "repository": { "type": "git", "url": "https://github.com/windy-freedom/cook.git" }, "bugs": { "url": "https://github.com/windy-freedom/cook/issues" }, "files": [ "dist/**/*", "README.md", "LICENSE", "package.json" ], "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "commander": "^12.0.0", "cook-mcp-windy": "^1.0.3", "express": "^4.18.2", "zod": "^3.22.4" }, "devDependencies": { "@types/express": "^4.17.21", "@types/jest": "^29.5.8", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "jest": "^29.7.0", "rimraf": "^5.0.5", "tsx": "^4.6.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18.0.0" } }