MCP Server Commands is a Model Context Protocol server that enables LLMs to execute shell commands and scripts on your local machine. It provides two primary tools: run_command for executing individual commands and run_script for running multi-line scripts in various interpreters like bash, fish, zsh, or python. This integration creates a powerful bridge between AI assistants and your operating system, allowing LLMs to interact directly with your computer.
MCP Server Commands allows Large Language Models (LLMs) to execute commands and scripts on your local machine through the Model Context Protocol. This enables AI assistants like Claude to perform tasks directly on your system, from simple file operations to complex scripting.
This tool allows the LLM to execute a single command on your system, such as:
ls -al
to list fileshostname
to get your computer's nameecho "hello world"
to output textThe tool returns both STDOUT and STDERR as text, which the LLM can then analyze and respond to.
This more powerful tool allows the LLM to execute multi-line scripts using various interpreters:
bash
, fish
, zsh
python
and othersThe script content is passed over STDIN, making this essentially equivalent to run_command
plus script input. This enables the LLM to write and execute code on the fly, creating a highly interactive experience.
Important: Be careful what commands you allow this server to run! Commands will execute with the same permissions as the user running the server.
Best practices:
sudo
)The package is published to npm as mcp-server-commands
. To install and configure:
Install the package globally or use npx:
npm install -g mcp-server-commands
Configure Claude Desktop by editing the config file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"mcp-server-commands": {
"command": "npx",
"args": ["mcp-server-commands"]
}
}
}
If you prefer to build from source:
Clone the repository:
git clone https://github.com/g0t4/mcp-server-commands.git
Install dependencies:
cd mcp-server-commands
npm install
Build the server:
npm run build
Configure Claude Desktop by editing the config file as above, but point to your local build:
{
"mcpServers": {
"mcp-server-commands": {
"command": "/path/to/mcp-server-commands/build/index.js"
}
}
}
~/Library/Logs/Claude/mcp-server-mcp-server-commands.log
--verbose
to the args
in your configuration for more detailed loggingnpm run inspector
Here are some examples of how to use the tools with Claude:
Simple file listing: Ask Claude to "Show me the files in my current directory"
System information: Ask Claude to "Tell me about my system configuration"
Create a file: Ask Claude to "Create a simple Python script that prints Hello World"
Run a data analysis: Ask Claude to "Analyze the contents of my CSV file using Python"
Remember to review all commands before approving them to ensure they're safe to execute on your system.