Run Command MCP Server
Provides tools for executing shell commands both synchronously and asynchronously with real-time output streaming and process management capabilities. It enables users to start background tasks, monitor progress, and manage long-running processes via Stdio or HTTP transports.
README
Run Command MCP Server
A Model Context Protocol (MCP) server that provides command execution capabilities with both synchronous and asynchronous streaming support.
Features
- Synchronous Command Execution: Run commands and wait for completion
- Asynchronous Command Execution: Start commands in background and monitor progress
- Real-time Output Streaming: Check command output while it's running
- Process Management: List, monitor, kill, and clean up processes
- Timeout Support: Automatically terminate long-running commands
- Multiple Transport Modes:
- Stdio Transport: Standard MCP communication via stdin/stdout
- HTTP Transport: RESTful API with Server-Sent Events (SSE) support for real-time notifications
- MCP Standard Compliance: Fully compliant with MCP specifications
Usage
Stdio Transport (Default)
Claude Desktop
{
"mcpServers": {
"run-command": {
"command": "npx",
"args": ["github:stilllovee/run-command-mcp"]
}
}
}
Or use locally after cloning:
{
"mcpServers": {
"run-command": {
"command": "node",
"args": ["PATH_TO_YOUR_REPO/index.js"]
}
}
}
Github Copilot
{
"servers": {
"run-command": {
"type": "stdio",
"command": "npx",
"args": ["github:stilllovee/run-command-mcp"]
},
},
"inputs": []
}
Or use locally after cloning:
{
"servers": {
"run-command": {
"type": "stdio",
"command": "node",
"args": ["PATH_TO_YOUR_REPO/index.js"]
}
},
"inputs": []
}
HTTP Transport (Streamable)
Start the HTTP server:
# Default port (8123)
npm run start:http
# Custom port
node http-server.js --port=3000
The server will be available at: http://localhost:8123/mcp
Github Copilot Configuration (HTTP)
{
"servers": {
"run-command-http": {
"type": "http",
"url": "http://localhost:8123/mcp"
}
},
"inputs": []
}
Available Tools
run_command
Run a custom shell command synchronously and return the output (stdout, stderr, exit code). Blocks until command completes.
Parameters:
command(required): The full command to execute (e.g., "echo hello world", "npm install", "git status")timeout(optional): Timeout in milliseconds (default: 30000)
Example:
{
"command": "echo hello world",
"timeout": 5000
}
start_command
Start a command asynchronously (non-blocking). Returns a process_id to check status and output later.
Parameters:
command(required): The full command to execute (e.g., "node server.js", "npm run dev")timeout(optional): Timeout in milliseconds. 0 means no timeout (default: 0)
Example:
{
"command": "node server.js",
"timeout": 0
}
get_command_output
Get the current output and status of a running or completed async command by process_id.
Parameters:
process_id(required): The process ID returned by start_commandtail(optional): Only return the last N lines of output (0 = all)
Example:
{
"process_id": "550e8400-e29b-41d4-a716-446655440000",
"tail": 10
}
list_processes
List all tracked processes (running, completed, failed, etc.)
Parameters:
status(optional): Filter by status: running, completed, failed, killed, error, timed_out
Example:
{
"status": "running"
}
kill_process
Kill a running process by process_id
Parameters:
process_id(required): The process ID to kill
Example:
{
"process_id": "550e8400-e29b-41d4-a716-446655440000"
}
clear_processes
Clear finished processes from memory. If process_id is provided, clears that specific process. Otherwise clears all non-running processes.
Parameters:
process_id(optional): Specific process ID to clear
Example:
{
"process_id": "550e8400-e29b-41d4-a716-446655440000"
}
Usage Examples
Example 1: Run a simple synchronous command
User: Run "echo hello world"
AI: Uses run_command to execute and get immediate results
Example 2: Start a long-running server
User: Start my Node.js server
AI: Uses start_command to start server in background
AI: Uses get_command_output to check if server started successfully
Example 3: Monitor build progress
User: Build my project and show me the progress
AI: Uses start_command to start build
AI: Periodically uses get_command_output to check build logs
AI: Reports progress to user in real-time
Example 4: Run Azure Functions locally
User: Start my Azure Functions app
AI: Uses start_command with "func start"
AI: Monitors output with get_command_output
AI: Shows compilation progress and when functions are ready
Use Cases
- Development Servers: Start and monitor Node.js, Python, or other development servers asynchronously
- Build Processes: Run and monitor long build processes (webpack, tsc, etc.)
- Testing: Run test suites and monitor results
- System Administration: Execute system commands and check results
- Log Monitoring: Start services and continuously check their logs
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。