Mac Shell MCP Server enables secure execution of macOS terminal commands through ZSH shell with a built-in security system that categorizes commands as safe, requiring approval, or forbidden. It features a pre-configured whitelist of common commands, an approval workflow for potentially dangerous operations, and comprehensive command management tools. Written in TypeScript and designed to work with Roo Code and Claude Desktop, it can be installed locally or run via npx, making it ideal for AI assistants that need controlled access to the macOS terminal while maintaining security through command whitelisting and explicit approval mechanisms.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Execute a shell command on macOS. Parameters: command (string), args (array of strings)
Get the list of whitelisted commands. Parameters: None
Add a command to the whitelist. Parameters: command (string), securityLevel (string), description (string)
Update the security level of a whitelisted command. Parameters: command (string), securityLevel (string)
Remove a command from the whitelist. Parameters: command (string)
Get the list of commands pending approval. Parameters: None
Approve a pending command. Parameters: commandId (string)
Deny a pending command. Parameters: commandId (string), reason (string)