NodeMCU MCP Service

by amanasmuei
Verified
{ "name": "nodemcu-mcp", "version": "1.0.0", "description": "Model Context Protocol (MCP) service for NodeMCU management", "main": "index.js", "bin": { "nodemcu-mcp": "./bin/cli.js" }, "scripts": { "start": "node index.js", "dev": "nodemon index.js", "mcp": "node mcp_server_sdk.js", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "nodemcu", "mcp", "iot", "model-context-protocol" ], "author": "", "license": "MIT", "dependencies": { "express": "^4.18.2", "body-parser": "^1.20.2", "dotenv": "^16.3.1", "cors": "^2.8.5", "jsonwebtoken": "^9.0.2", "ws": "^8.14.2", "yargs": "^17.7.2", "@modelcontextprotocol/sdk": "^1.6.1", "zod": "^3.22.4" }, "devDependencies": { "nodemon": "^3.0.1" }, "mcp": { "name": "NodeMCU Manager", "description": "A tool for managing NodeMCU (ESP8266) IoT devices", "icon": "https://raw.githubusercontent.com/nodemcu/nodemcu-firmware/master/docs/img/nodemcu_logo.png", "protocol_version": "0.1", "execution_type": "subprocess" } }