Mac Shell MCP Server

by cfdude
Verified
{ "name": "mac-shell-mcp", "version": "1.0.4", "description": "MCP server for executing macOS terminal commands with ZSH", "type": "module", "main": "build/index.js", "bin": { "mac-shell-mcp": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && chmod +x build/index.js", "prepare": "npm run build", "start": "node build/index.js", "dev": "ts-node --esm src/index.ts", "test": "jest" }, "keywords": [ "mcp", "shell", "macos", "zsh", "terminal" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "zod": "^3.22.4" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.11.0", "jest": "^29.7.0", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }