package.json•949 B
{
"name": "waha-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for WAHA WhatsApp HTTP API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/index-http.ts",
"start": "node dist/index.js",
"start:http": "node dist/index-http.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"whatsapp",
"waha",
"model-context-protocol"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}