The Claude Desktop Commander MCP Server is a powerful tool that enables Claude Desktop to execute terminal commands, manage processes, and perform file system operations directly from your computer. Built on the Model Context Protocol (MCP), it extends Claude's capabilities to include terminal control, file search, and diff-based file editing.
npx -y @smithery/cli install @wonderwhy-er/desktop-commander --client claude
npx @wonderwhy-er/desktop-commander setup
Restart Claude after installation.
Add the following to your claude_desktop_config.json
(found at ~/Library/Application Support/Claude/claude_desktop_config.json
on Mac):
{
"mcpServers": {
"desktop-commander": {
"command": "npx",
"args": ["-y", "@wonderwhy-er/desktop-commander"]
}
}
}
Restart Claude.
bash
git clone https://github.com/wonderwhy-er/ClaudeComputerCommander.git
cd ClaudeComputerCommander
npm run setup
execute_command
: Run commands with configurable timeout.read_output
: Fetch output from long-running commands.force_terminate
: Stop running command sessions.list_processes
: View system processes.kill_process
: Terminate processes by PID.read_file
/write_file
: File operations.create_directory
/list_directory
: Directory management.search_files
: Pattern-based file search.code_search
: Recursive ripgrep-based text and code search.edit_block
: Apply surgical text replacements.write_file
: Complete file rewrites.Example of Search/Replace Block:
filepath.ext
<<<<<<< SEARCH
existing code to replace
=======
new code to insert
>>>>>>> REPLACE
execute_command
to start the command.read_output
.force_terminate
if needed."It's a life saver! I paid Claude + Cursor currently which I always feel it's kind of duplicated. This solves the problem ultimately."
— YouTube Comment"This is the first comment I've ever left on a youtube video, THANK YOU!"
— YouTube Comment
We welcome contributions! If you find this project useful, please consider giving it a ⭐ star on GitHub. For bug reports, feature requests, or code contributions, visit the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.