command-executor
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@command-executorshow the current directory contents"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Command Executor MCP Server
A Model Context Protocol (MCP) server that executes shell commands and handles large outputs with pagination.
Features
execute_command: Executes shell commands and captures output
Returns full output directly if under 10,000 estimated tokens
For larger outputs, stores them and returns an ID for pagination
Supports custom working directory and timeout
get_output_page: Retrieves paginated output for large command results
Pages contain approximately 3,000 lines each
Provides navigation info (current page, total pages, has next/previous)
Related MCP server: Command Line Interface Enhancer
Installation
pip install -r requirements.txtConfiguration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"command-executor": {
"command": "python",
"args": ["/path/to/command_executor_mcp.py"]
}
}
}Usage Examples
Execute a simple command:
execute_command({"command": "ls -la"})Execute with custom directory and timeout:
execute_command({
"command": "find . -name '*.py'",
"working_directory": "/Users/username/projects",
"timeout": 60
})Retrieve paginated output:
get_output_page({
"output_id": "uuid-returned-from-execute",
"page": 1
})Token Estimation
The server estimates tokens at approximately 0.25 tokens per character. Outputs exceeding 10,000 estimated tokens are automatically paginated.
This server cannot be deployed
Maintenance
Related MCP Connectors
I run shell commands on your private cloud environment (bash, sh, zsh)
Execute PowerShell commands securely with controlled timeouts and input validation. Retrieve syste…
Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.
Run Python code from natural language prompts, with optional PyPI package install.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables safe execution of system shell commands with real-time streaming output and rich metadata capture. Provides configurable command execution with timeout controls, environment management, and extensible plugin architecture for monitoring command lifecycles.4-
- AlicenseNot gradedqualityDmaintenanceEnables execution of shell commands, directory navigation, and interactive program automation through an enhanced command-line interface. Provides tools for running commands, managing working directories, and handling interactive programs using expect/send sequences.1MIT
- AlicenseNot gradedqualityCmaintenanceEnables execution of bash commands with support for timeouts and background jobs, allowing file operations, build commands, system inspection, and long-running tasks.36 npm9MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables users to execute arbitrary shell commands through a terminal tool. It supports custom working directories, configurable execution timeouts, and safe command parsing using shlex.-