CLI MCP Server provides a secure Model Context Protocol (MCP) implementation for executing command-line operations with comprehensive security features. It enables AI assistants to safely interact with your system's command line through strict validation, configurable whitelisting, and robust security measures to prevent common attack vectors like path traversal and shell injection.
CLI MCP Server enables AI assistants to execute command-line operations in a secure, controlled environment. It implements the Model Context Protocol (MCP) to provide a safe interface between AI models and your system's command line.
The easiest way to install CLI MCP Server for Claude Desktop is via Smithery:
npx @smithery/cli install cli-mcp-server --client claude
pip install cli-mcp-server
Configure the server using environment variables:
| Variable | Description | Default |
| --- | --- | --- |
| ALLOWED_DIR
| Base directory for command execution (Required) | None (Required) |
| ALLOWED_COMMANDS
| Comma-separated list of allowed commands or 'all' | ls,cat,pwd
|
| ALLOWED_FLAGS
| Comma-separated list of allowed flags or 'all' | -l,-a,--help
|
| MAX_COMMAND_LENGTH
| Maximum command string length | 1024
|
| COMMAND_TIMEOUT
| Command execution timeout (seconds) | 30
|
Note: Setting ALLOWED_COMMANDS
or ALLOWED_FLAGS
to 'all' will allow any command or flag respectively. Use with caution.
Executes whitelisted CLI commands within allowed directories.
Input Schema:
{
"command": {
"type": "string",
"description": "Single command to execute (e.g., 'ls -l' or 'cat file.txt')"
}
}
Security Notes:
Displays current security configuration and restrictions, including:
Add the server configuration to your Claude Desktop config file located at:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cli-mcp-server": {
"command": "uv",
"args": [
"--directory",
"<path/to/the/repo>/cli-mcp-server",
"run",
"cli-mcp-server"
],
"env": {
"ALLOWED_DIR": "</your/desired/dir>",
"ALLOWED_COMMANDS": "ls,cat,pwd,echo",
"ALLOWED_FLAGS": "-l,-a,--help,--version",
"MAX_COMMAND_LENGTH": "1024",
"COMMAND_TIMEOUT": "30"
}
}
}
}
{
"mcpServers": {
"cli-mcp-server": {
"command": "uvx",
"args": [
"cli-mcp-server"
],
"env": {
"ALLOWED_DIR": "</your/desired/dir>",
"ALLOWED_COMMANDS": "ls,cat,pwd,echo",
"ALLOWED_FLAGS": "-l,-a,--help,--version",
"MAX_COMMAND_LENGTH": "1024",
"COMMAND_TIMEOUT": "30"
}
}
}
}
If the server isn't showing in the UI, try clearing your cache via uv clean
.
CLI MCP Server implements multiple layers of security:
The server provides detailed error messages for various scenarios:
These error messages help diagnose issues while maintaining security.