A Model Context Protocol (MCP) server that provides comprehensive system troubleshooting and diagnostic tools for developers and system administrators. This server enables LLMs to help diagnose system issues, monitor resources, check logs, test connectivity, and more.
Version: 1.0.0 | License: MIT | Python: 3.10+
- Features
- Project Structure
- Quick Start
- Installation Methods
- Available Tools
- Configuration
- Security
- Development
- Documentation
Get comprehensive details about the operating system, hardware specifications, CPU architecture, memory capacity, and installed software versions.
Real-time monitoring of system resources including:
- CPU usage (overall and per-core)
- Memory utilization (RAM and swap)
- Disk I/O statistics
- Network I/O metrics
Read and analyze system log files with:
- Tail-like functionality to read last N lines
- Pattern-based filtering (similar to grep)
- Common log location discovery
- Support for various log formats
Test network connectivity with:
- DNS resolution testing
- TCP port connectivity checks
- Connection timing measurements
- Timeout configuration
Search and monitor running processes:
- Pattern-based process search
- CPU and memory usage per process
- Process status and command line details
- Sorted by resource usage
Inspect system environment including:
- Environment variables (with pattern filtering)
- Installed development tools and versions
- PATH configuration
- Common tool version checks (git, docker, python, node, etc.)
Execute whitelisted diagnostic commands with:
- Strict command whitelist for security
- Timeout protection
- Safe diagnostic operations only
- Real-time output capture
troubleshooting_mcp/
βββ src/
β βββ troubleshooting_mcp/ # Main package
β βββ __init__.py # Package initialization
β βββ server.py # MCP server entry point
β βββ constants.py # Shared constants
β βββ models.py # Pydantic input validation models
β βββ utils.py # Utility functions
β βββ tools/ # Individual diagnostic tools
β βββ __init__.py # Tool registration
β βββ system_info.py # System information tool
β βββ resource_monitor.py # Resource monitoring tool
β βββ log_reader.py # Log file reader tool
β βββ network_diagnostic.py # Network diagnostic tool
β βββ process_search.py # Process search tool
β βββ environment_inspect.py # Environment inspection tool
β βββ safe_command.py # Safe command execution tool
β
βββ tests/ # Test suite
β βββ __init__.py
β βββ test_server.py # Server validation tests
β
βββ docs/ # Documentation
β βββ QUICKSTART.md # Quick start guide
β βββ EXAMPLES.md # Detailed usage examples
β βββ CHANGELOG.md # Version history
β
βββ config/ # Configuration files
β βββ claude_desktop_config.example.json # Claude Desktop example config
β
βββ troubleshooting_mcp.py # Backward compatibility entry point
βββ setup.py # Package setup script
βββ pyproject.toml # Modern Python project configuration
βββ requirements.txt # Python dependencies
βββ .gitignore # Git ignore rules
βββ LICENSE # MIT License
βββ README.md # This file
- Modular Architecture: Each diagnostic tool is in its own module for easy maintenance and testing
- Clear Separation: Constants, models, utilities, and tools are separated for clarity
- Backward Compatibility: The root
troubleshooting_mcp.pymaintains compatibility with existing configurations - Installable Package: Can be installed with
pip install -e .for system-wide access - Type Safety: Uses Pydantic v2 for comprehensive input validation
- Security First: Strict whitelists, timeout protection, and input validation throughout
# Navigate to the project directory
cd troubleshooting_mcp
# Install required packages
pip install -r requirements.txt
# Or install as a package (recommended)
pip install -e .# Method 1: Run directly (backward compatible)
python troubleshooting_mcp.py --help
# Method 2: Run as module
python -m troubleshooting_mcp.server --help
# Method 3: If installed as package
troubleshooting-mcp --help
# Run validation tests
python tests/test_server.pymacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"troubleshooting": {
"command": "python",
"args": ["/absolute/path/to/troubleshooting_mcp.py"]
}
}
}Alternative (if installed as package):
{
"mcpServers": {
"troubleshooting": {
"command": "troubleshooting-mcp"
}
}
}- Completely quit Claude Desktop
- Restart Claude Desktop
- Look for the π icon indicating MCP servers are connected
python troubleshooting_mcp.pyPros: Simple, no installation needed Cons: Not accessible system-wide
pip install -e .
troubleshooting-mcpPros: System-wide access, easy to modify, auto-updates Cons: Requires pip install
pip install .
troubleshooting-mcpPros: Clean installation, system-wide access Cons: Requires reinstall after changes
python -m troubleshooting_mcp.serverPros: No installation, proper Python module syntax Cons: Requires being in parent directory
| Tool | Description | Example Usage |
|---|---|---|
troubleshooting_get_system_info |
Get comprehensive system details | "What are the system specs?" |
troubleshooting_monitor_resources |
Monitor CPU, memory, disk, network | "Show current resource usage" |
troubleshooting_read_log_file |
Read and filter log files | "Show last 100 lines of syslog" |
troubleshooting_test_network_connectivity |
Test host/port connectivity | "Can I reach google.com?" |
troubleshooting_search_processes |
Search running processes | "Is nginx running?" |
troubleshooting_inspect_environment |
Check environment variables & tools | "What dev tools are installed?" |
troubleshooting_execute_safe_command |
Run whitelisted commands | "Run df -h to check disk space" |
For detailed tool documentation and examples, see docs/EXAMPLES.md.
mcp>=1.0.0- MCP Python SDK with FastMCP frameworkpsutil>=5.9.0- System and process monitoringpydantic>=2.0.0- Input validation
The server respects standard Python environment variables:
PYTHONPATH- For module resolutionPATH- For locating diagnostic commands
Log Paths: Edit src/troubleshooting_mcp/constants.py:
COMMON_LOG_PATHS = [
"/var/log/syslog",
"/custom/app/logs/error.log",
# Add your custom paths
]Safe Commands: Edit src/troubleshooting_mcp/constants.py:
SAFE_COMMANDS = {
"ping", "traceroute", "netstat",
# Add approved commands only
}Character Limit: Edit src/troubleshooting_mcp/constants.py:
CHARACTER_LIMIT = 25000 # Adjust as neededOnly pre-approved diagnostic commands can be executed. The whitelist includes common troubleshooting tools but excludes any commands that could:
- Modify system state
- Delete or overwrite files
- Change permissions
- Install software
- Execute arbitrary code
Default Whitelist: ping, traceroute, nslookup, dig, netstat, ss, ip, ifconfig, df, du, free, uptime, uname, lsblk, lsof, whoami, hostname
All long-running operations have configurable timeouts:
- Command execution: 30 seconds default, 300 seconds maximum
- Network tests: 5 seconds default, 30 seconds maximum
- No privilege escalation
- Clear error messages for permission-denied scenarios
- Read-only operations where possible
All inputs are validated using Pydantic models with:
- Type checking
- Range constraints
- Pattern validation
- Whitelist verification
# Clone the repository
git clone <repository-url>
cd troubleshooting_mcp
# Create virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in editable mode with dev dependencies
pip install -e .
# Run tests
python tests/test_server.py- Create new tool module in
src/troubleshooting_mcp/tools/:
# src/troubleshooting_mcp/tools/my_tool.py
def register_my_tool(mcp):
@mcp.tool(name="troubleshooting_my_tool", annotations={...})
async def troubleshooting_my_tool(params: MyInput) -> str:
# Implementation
pass- Add input model in
src/troubleshooting_mcp/models.py:
class MyInput(BaseModel):
model_config = ConfigDict(str_strip_whitespace=True)
param: str = Field(..., description="...")- Register in tools package
src/troubleshooting_mcp/tools/__init__.py:
from .my_tool import register_my_tool
def register_all_tools(mcp):
# ... existing registrations ...
register_my_tool(mcp)- Follow PEP 8 style guidelines
- Use type hints where appropriate
- Add comprehensive docstrings to all functions
- Keep tools modular and focused
- Use the shared utility functions
# Run all tests
python tests/test_server.py
# Test specific functionality
python -c "from src.troubleshooting_mcp import mcp; print('Import successful')"| Document | Description |
|---|---|
| README.md | This file - Overview and getting started |
| docs/QUICKSTART.md | 5-minute quick start guide |
| docs/EXAMPLES.md | Detailed usage examples for each tool |
| docs/CHANGELOG.md | Version history and changes |
| config/claude_desktop_config.example.json | Example Claude Desktop configuration |
Once configured in Claude Desktop, try these prompts:
"What operating system and hardware does this machine have?"
"Show me current CPU and memory usage"
"What log files are available on this system?"
"Search nginx error logs for 500 errors in the last 200 lines"
"Can this server reach google.com?"
"Test if port 443 is open on api.example.com"
"Is docker running on this system?"
"Show me the top 10 processes by CPU usage"
"What development tools are installed?"
"Show me all AWS-related environment variables"
- Check file path is absolute in config
- Verify JSON syntax (no trailing commas)
- Check Claude Desktop logs:
- macOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
- macOS:
# Reinstall dependencies
pip install --upgrade -r requirements.txt
# Or use virtual environment
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -e .# Check Python is in PATH
which python # macOS/Linux
where python # Windows
# Or use full path in config
# "command": "/usr/bin/python3" # macOS/Linux
# "command": "C:/Python310/python.exe" # WindowsContributions are welcome! When contributing:
- Follow the existing code style and modular architecture
- Add comprehensive docstrings and type hints
- Include input validation using Pydantic
- Implement proper error handling
- Update documentation
- Test on multiple platforms (Linux, macOS, Windows)
This project is licensed under the MIT License - see the LICENSE file for details.
Built using:
- Model Context Protocol (MCP) by Anthropic
- FastMCP - Python MCP SDK
- psutil - System monitoring library
- Pydantic - Data validation
For issues, questions, or suggestions:
- Review the troubleshooting section above
- Check the QUICKSTART guide
- Review EXAMPLES documentation
- Check the MCP documentation: https://modelcontextprotocol.io/
Made for developers and system administrators
Last Updated: 2025-11-05 | Version: 1.0.0