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
+10
View File
@@ -0,0 +1,10 @@
#!/bin/zsh
set -euo pipefail
LABEL="com.local.macmini-mcp"
PLIST="$HOME/Library/LaunchAgents/$LABEL.plist"
DOMAIN="gui/$(id -u)"
launchctl bootout "$DOMAIN" "$PLIST" 2>/dev/null || true
rm -f "$PLIST"
echo "Uninstalled $LABEL"