io.github.major/pcp
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., "@io.github.major/pcpwhat's the current CPU usage?"
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.
pcp-mcp
MCP server for Performance Co-Pilot (PCP) metrics.
Query system performance metrics via the Model Context Protocol - CPU, memory, disk I/O, network, processes, and more.
📖 Full Documentation | 🚀 Getting Started
🚀 Quick Start (No Install)
Run immediately with uvx — no installation required:
uvx pcp-mcpOr install as a persistent global tool:
uvx tool install pcp-mcp
pcp-mcpRelated MCP server: Prometheus MCP Server
📦 Installation
pip install pcp-mcpOr with uv:
uv add pcp-mcp📋 Requirements
Python: 3.10+
PCP: Performance Co-Pilot with
pmcdandpmproxyrunning# Fedora/RHEL/CentOS sudo dnf install pcp sudo systemctl enable --now pmcd pmproxy # Ubuntu/Debian sudo apt install pcp sudo systemctl enable --now pmcd pmproxy
⚙️ Configuration
Configure via environment variables:
Variable | Description | Default |
| pmproxy host |
|
| pmproxy port |
|
| Target pmcd host to monitor |
|
| Use HTTPS for pmproxy |
|
| Verify TLS certificates |
|
| Path to custom CA bundle | (optional) |
| Request timeout (seconds) |
|
| HTTP basic auth user | (optional) |
| HTTP basic auth password | (optional) |
| Hostspecs allowed via host param | (optional) |
🎯 Usage
Monitor localhost (default)
pcp-mcpMonitor a remote host
PCP_TARGET_HOST=webserver1.example.com pcp-mcpOr use the CLI flag:
pcp-mcp --target-host webserver1.example.comConnect to remote pmproxy
PCP_HOST=metrics.example.com pcp-mcpUse SSE transport
pcp-mcp --transport sse🔌 MCP Client Configuration
Claude Desktop
Add to ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"pcp": {
"command": "uvx",
"args": ["pcp-mcp"]
}
}
}For remote monitoring:
{
"mcpServers": {
"pcp": {
"command": "uvx",
"args": ["pcp-mcp", "--target-host", "webserver1.example.com"]
}
}
}💡 Using
uvxmeans you don't need pcp-mcp installed — it runs directly from PyPI.
🛠️ Available Tools
System Monitoring
get_system_snapshot- Point-in-time system overview (CPU, memory, disk, network, load)get_process_top- Top processes by CPU, memory, or I/O usagequery_metrics- Fetch current values for specific PCP metricssearch_metrics- Discover available metrics by name patterndescribe_metric- Get detailed metadata about a metric
Example Queries
"What's the current CPU usage?"
→ Uses get_system_snapshot
"Show me the top 10 processes by memory usage"
→ Uses get_process_top(sort_by="memory", limit=10)
"What metrics are available for network traffic?"
→ Uses search_metrics(pattern="network")
"Get detailed info about kernel.all.load"
→ Uses describe_metric(name="kernel.all.load")💡 Use Cases
Performance Troubleshooting
Ask Claude to:
"Analyze current system performance and identify bottlenecks"
"Why is my disk I/O so high?"
"Which processes are consuming the most CPU?"
System Monitoring
"Give me a health check of the production server"
"Compare CPU usage over the last minute"
"Monitor network traffic on eth0"
Capacity Planning
"What's the memory utilization trend?"
"Show me disk usage across all filesystems"
"Analyze process resource consumption patterns"
🏗️ Architecture
┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
│ LLM │ ◄─MCP─► │ pcp-mcp │ ◄─HTTP─► │ pmproxy │ ◄─────► │ pmcd │
└─────────┘ └─────────┘ └─────────┘ └─────────┘
(REST API) (metrics)pcp-mcp: FastMCP server exposing PCP metrics via MCP tools
pmproxy: PCP's REST API server (runs on port 44322 by default)
pmcd: PCP metrics collector daemon
Remote monitoring: Set
PCP_TARGET_HOSTto query a different pmcd instance via pmproxy
🔧 Development
# Install dependencies
uv sync --dev
# Run all checks
make check
# Individual commands
make lint # ruff check
make format # ruff format
make typecheck # ty check
make test # pytest with coverage📖 Documentation
Full documentation at https://major.github.io/pcp-mcp
📄 License
MIT
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
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/major/pcp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server