Initial local macOS MCP service

This commit is contained in:
Adolfo Reyna
2026-05-26 21:54:57 -04:00
commit ad3bac91ae
18 changed files with 1937 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"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": {}
}