Pcp Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Pcp Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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](https://major.github.io/pcp-mcp) | 🚀 [Getting Started](https://major.github.io/pcp-mcp/getting-started/)
Run immediately with uvx — no installation required:
uvx pcp-mcpOr install as a persistent global tool:
uvx tool install pcp-mcp
pcp-mcppip install pcp-mcpOr with uv:
uv add pcp-mcppmcd and pmproxy running # Fedora/RHEL/CentOS
sudo dnf install pcp
sudo systemctl enable --now pmcd pmproxy
# Ubuntu/Debian
sudo apt install pcp
sudo systemctl enable --now pmcd pmproxyConfigure via environment variables:
| Variable | Description | Default |
|---|---|---|
PCP_HOST | pmproxy host | localhost |
PCP_PORT | pmproxy port | 44322 |
PCP_TARGET_HOST | Target pmcd host to monitor | localhost |
PCP_USE_TLS | Use HTTPS for pmproxy | false |
PCP_TLS_VERIFY | Verify TLS certificates | true |
PCP_TLS_CA_BUNDLE | Path to custom CA bundle | (optional) |
PCP_TIMEOUT | Request timeout (seconds) | 30 |
PCP_USERNAME | HTTP basic auth user | (optional) |
PCP_PASSWORD | HTTP basic auth password | (optional) |
PCP_ALLOWED_HOSTS | Hostspecs allowed via host param | (optional) |
pcp-mcpPCP_TARGET_HOST=webserver1.example.com pcp-mcpOr use the CLI flag:
pcp-mcp --target-host webserver1.example.comPCP_HOST=metrics.example.com pcp-mcppcp-mcp --transport sseAdd 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 uvx means you don't need pcp-mcp installed — it runs directly from PyPI."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")Ask Claude to:
┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
│ LLM │ ◄─MCP─► │ pcp-mcp │ ◄─HTTP─► │ pmproxy │ ◄─────► │ pmcd │
└─────────┘ └─────────┘ └─────────┘ └─────────┘
(REST API) (metrics)PCP_TARGET_HOST to query a different pmcd instance via pmproxy# 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 coverageFull documentation at https://major.github.io/pcp-mcp
MIT
<!-- mcp-name: io.github.major/pcp -->
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.