ProcExecMCP
Click on "Install 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., "@ProcExecMCPSearch for TODO comments in project"
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.
ProcExecMCP
Stateless command execution and process management MCP server for Claude
ProcExecMCP enables Claude (acting in an architectural role) to search code content, execute commands, monitor processes, and terminate processes. The server exposes 4 MCP tools using FastMCP with Python 3.11+, psutil for cross-platform process management, and system ripgrep for file content search.
Features
🔍 search_file_contents: Search for patterns in file contents using ripgrep
⚡ execute_command: Execute commands safely with timeout and output limits
📊 list_processes: List running processes with filtering and sorting
🛑 kill_process: Terminate processes by PID
Related MCP server: Desktop Commander MCP
Security
✅ No shell injection (no
shell=True)✅ Mandatory timeouts on all operations
✅ Resource limits prevent memory exhaustion
✅ Path validation prevents traversal attacks
✅ Sanitized error messages
For comprehensive security documentation, see SECURITY_ARCHITECTURE.md.
Prerequisites
Python 3.11+
uv package manager (installation guide)
ripgrep (rg) binary (installation guide)
Claude Desktop or Claude for Windows
Quick Start
1. Install Dependencies
# Clone repository
git clone https://github.com/Positronikal/ProcExecMCP.git ProcExecMCP
cd ProcExecMCP
# Install with uv
uv sync2. Verify ripgrep
# Check if ripgrep is installed
rg --versionIf not installed:
Windows:
winget install BurntSushi.ripgrep.MSVCmacOS:
brew install ripgrepLinux:
sudo apt install ripgrep
3. Configure Claude Desktop
Edit your Claude Desktop configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Add ProcExecMCP to mcpServers:
{
"mcpServers": {
"procexec": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/ProcExecMCP",
"run",
"procexec"
],
"env": {
"PROCEXEC_TIMEOUT": "30000",
"PROCEXEC_MAX_OUTPUT": "10485760",
"PROCEXEC_ENABLE_KILL": "true",
"PROCEXEC_RIPGREP_PATH": "/path/to/rg"
}
}
}
}Windows Example:
{
"mcpServers": {
"procexec": {
"command": "C:\\Users\\YourName\\.local\\bin\\uv.exe",
"args": [
"--directory",
"D:\\dev\\ProcExecMCP",
"run",
"procexec"
],
"env": {
"PROCEXEC_RIPGREP_PATH": "C:\\Program Files\\ripgrep\\rg.exe"
}
}
}
}4. Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server.
5. Verify Installation
In Claude, try:
What MCP tools do you have available?You should see all 4 ProcExecMCP tools listed.
Configuration
Environment Variables
PROCEXEC_TIMEOUT: Command timeout in milliseconds (default: 30000, range: 1000-300000)
PROCEXEC_MAX_OUTPUT: Maximum output size in bytes (default: 10485760 = 10MB)
PROCEXEC_BLOCKED_PATHS: Comma-separated list of paths to block access
PROCEXEC_ENABLE_KILL: Enable process termination tool (default: "true")
PROCEXEC_RIPGREP_PATH: Full path to ripgrep binary (use if not in PATH)
Security Considerations
Blocked Paths: Configure
PROCEXEC_BLOCKED_PATHSto protect sensitive directoriesProcess Termination: Disable with
PROCEXEC_ENABLE_KILL="false"if not neededTimeouts: Set appropriate limits to prevent runaway commands
Privileges: Avoid running Claude Desktop with elevated privileges unless necessary
Usage Examples
Search for Code Patterns
Search for all TODO comments in my Python project at /path/to/projectExecute Analysis Tools
Run 'pylint src/' in my project directory and show the resultsMonitor Processes
List all Python processes sorted by memory usageTerminate Stuck Processes
Terminate process 1234 gracefullyDevelopment
For development setup, running tests, modifying the server, and building documentation, see USING.md.
Documentation
Quick Start: See above
Detailed Usage: USING.md
Security Architecture: SECURITY_ARCHITECTURE.md
API Documentation:
docs/directory (Doxygen generated)Troubleshooting: BUGS.md
Contributing: CONTRIBUTING.md
Troubleshooting
ripgrep not found
Ensure ripgrep is installed and in PATH, or set PROCEXEC_RIPGREP_PATH environment variable.
Timeout errors
Increase timeout via PROCEXEC_TIMEOUT environment variable (milliseconds).
Permission denied
Check file/directory permissions or configure PROCEXEC_BLOCKED_PATHS.
For more troubleshooting guidance, see BUGS.md.
License
This project is licensed under the GNU General Public License version 3 or any later version (GPLv3+). See COPYING.md for the full license text.
Contributing
Contributions are welcome! Please read CONTRIBUTING.md for guidelines.
Support
Issues: GitHub Issues
Security: See SECURITY.md for responsible disclosure
Documentation: See
docs/for API reference
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hoyt-harness/ProcExecMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server