package.json•779 B
{
"name": "mcp-inflow-ingredients",
"version": "1.0.0",
"description": "MCP server for Inflow Inventory API - manage ingredients and products",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js --watch . --ext js,json",
"test": "node tests/inflow.test.js",
"test:connection": "node tests/test-connection.js"
},
"keywords": [
"mcp",
"inflow",
"inventory",
"ingredients",
"products",
"integration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}