Files
mac_mcp/package.json
T
2026-05-26 21:54:57 -04:00

26 lines
762 B
JSON

{
"name": "macmini-mcp",
"version": "0.1.0",
"private": true,
"description": "Local MCP server for approved macOS app automation.",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node src/http.js",
"start:stdio": "node src/stdio.js",
"dev": "node --watch src/http.js",
"check": "node --check src/*.js && node --check src/integrations/*.js && node --test",
"service:install": "./scripts/install-service.sh",
"service:restart": "./scripts/restart-service.sh",
"service:status": "./scripts/status-service.sh",
"service:uninstall": "./scripts/uninstall-service.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.25.0"
},
"devDependencies": {}
}