Linux-first command-line performance triage
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
git clone https://github.com/guillem/stallhunt{
"mcpServers": {
"stallhunt": {
"command": "stallhunt"
}
}
}Resumen de MCP Servers
# Stallhunt
Stallhunt is a Linux-first command-line performance triage tool.
Repository: https://github.com/guillem/stallhunt
Traditional tools such as `top`, `htop`, `iotop`, `vmstat`, and `iostat` expose measurements. They are excellent tools, but the human operator still has to answer the harder question:
> **What is actually constraining useful work right now, who is suffering, and who is probably responsible?**
Stallhunt aims to automate that reasoning.
## Install
Requirements:
- Linux 4.20 or newer with procfs mounted; readable PSI files under `/proc/pressure` are required for pressure verdicts,
- Rust 1.85 or newer for source builds.
See [`docs/install.md`](docs/install.md) for `cargo install`, release tarballs, and the support matrix.
From a clone:
```bash
cargo install --path .
stallhunt
```
Bare `stallhunt` runs a default 10-second hunt. On a terminal it renders a
compact, color-coded report; piped or redirected output (`stallhunt | cat`,
`>file`, CI) is unchanged plain text. Use `--json` for the full structured
evidence, `--verbose` to expand the compact report's collapsed caveats back
to full text, or `--no-color` (also `NO_COLOR=1`) to disable color without
changing the layout:
```bash
stallhunt --json
stallhunt hunt --duration 30s
stallhunt hunt --verbose
```
Capture and replay a normalized observation:
```bash
stallhunt record --duration 10s --output incident.json
stallhunt replay incident.json
stallhunt redact incident.json --output incident.redacted.json
```
Follow finding lifecycle for a bounded number of rolling windows. On a
terminal this opens a full-screen TUI (`q` quit, arrows/`jk` select,
`Enter`/`Space` show or hide detail, `PageUp`/`PageDown`/`Home`/`End` scroll,
`h`/`?` help). At 120×30 or larger it also shows the selected host/cgroup's
six process-role lists beside the lifecycle panels; piped output or
`--json` remain append-only text/JSON and carry the same scoped roles:
```bash
stallhunt watch --interval 2s --count 3
```
Serve Model Context Protocol tools over stdio so coding agents can query
diagnoses directly — a resident sampler keeps a rolling view of recent
pressure for instant answers (for Claude Code: `claude mcp add stallhunt --
stallhunt mcp`; see [`docs/mcp-server.md`](docs/mcp-server.md)):
```bash
stallhunt mcp [--interval 2s] [--no-sampler]
```
Source packaging for an OpenAI local plugin, an Anthropic-compatible Linux
MCPB desktop extension, and official MCP Registry metadata lives in the
repository. These packages deliberately keep diagnosis local instead of
hosting Stallhunt on a machine other than the one being investigated. See
[`docs/directory-distribution.md`](docs/directory-distribution.md).
Generate shell completions:
```bash
stallhunt completions bash > ~/.local/share/bash-completion/completions/stallhunt
stallhunt completions zsh > ~/.local/share/zsh/site-functions/_stallhunt
```
Recording output paths are not overwritten unless `--force` is supplied. Ten-second hunts are the normal diagnostic path; sub-second observations are telemetry smoke tests and do not receive healthy or pressure verdicts. See [`docs/development.md`](docs/development.md) for validation and opt-in acceptance commands.
## Core idea
The primary abstraction is **lost time**, not utilization.
High utilization is not automatically a problem. A machine using 95% of its RAM may be perfectly healthy. A CPU at 70% utilization may still have latency-sensitive work suffering from scheduler contention. The project therefore focuses on evidence of stalled progress:
- CPU scheduler pressure,
- I/O stalls,
- memory pressure/reclaim,
- lock contention,
- network-related waits,
- eventually deeper blocking chains.
Example output shape:
```text
$ stallhunt
SYSTEM HEALTH: DEGRADED
1. CPU scheduling contention SEVERE
Impact: 23.4% pressure during observation
Victims: postgres [4812], nginx [5120]
Suspects: rustc [9231], ffmpeg [9401]
Confidence: high
Evidence:
CPU PSI some avg10: 23.4%
run queue latency estimate: elevated
rustc CPU consumption: 735%
postgres runnable delay: 3.8s / 10s
2. Block I/O contention MODERATE
Device: nvme0n1
Victim: postgres [4812]
Suspect: restic [7712]
Confidence: medium
Memory: no significant pressure detected.
High memory occupancy alone is not treated as a bottleneck.
```
This output is aspirational; the project will reach it incrementally.
## Product principles
1. **Diagnose, do not merely display.**
2. **Measure stalled progress whenever possible.**
3. **Separate observation from inference.**
4. **Show evidence for every diagnosis.**
5. **Express uncertainty explicitly.**
6. **Remain useful without eBPF.**
7. **Stay cheap enough to run on a stressed system.**
8. **Treat Git as the complete project memory.**
## Initial scope
The first useful release targets Linux and focuses on:
- CPU scheduling contention,
- memory pressure,
- block I/O pressure,
- per-process attribution where Linux exposes enough evidence,
- cgroup/systemd-aware grouping when practical,
- human-readable terminal output,
- versioned machine-readable JSON (the pre-1.0 shape may evolve),
- bounded observation windows,
- deterministic offline fixture/replay analysis.
Later releases may add:
- eBPF-based off-CPU analysis,
- futex/lock contention,
- syscall/blocking attribution,
- network queue/socket diagnosis,
- dependency/wait graphs,
- richer cgroup/container analysis.
## Repository map
```text
.
├── AGENTS.md
├── CHANGELOG.md
├── Cargo.toml
├── LICENSE-APACHE
├── LICENSE-MIT
├── README.md
├── src/
│ ├── analysis.rs
│ ├── cgroup.rs
│ ├── cli.rs
│ ├── cpu.rs
│ ├── duration_us.rs
│ ├── io.rs
│ ├── main.rs
│ ├── mcp/
│ ├── memory.rs
│ ├── observe.rs
│ ├── psi.rs
│ ├── record.rs
│ ├── render.rs
│ ├── report.rs
│ ├── style.rs
│ ├── tui/
│ └── watch.rs
├── tests/
│ ├── cgroup_acceptance.rs
│ ├── cli.rs
│ ├── cpu_acceptance.rs
│ ├── io_acceptance.rs
│ ├── mcp.rs
│ ├── memory_acceptance.rs
│ └── fixtures/
│ ├── cpu/
│ └── proc-*
└── docs/
├── README.md
├── install.md
├── product.md
├── architecture.md
├── data-model.md
├── telemetry.md
├── inference-engine.md
├── cli-ux.md
├── security-privileges.md
├── testing.md
├── development.md
├── codex-workflow.md
├── experiments.md
├── references.md
├── roadmap.md
├── status.md
├── glossary.md
└── decisions/
```
Start with [`AGENTS.md`](AGENTS.md), then [`docs/README.md`](docs/README.md).
## Privacy Policy
Stallhunt reads bounded local Linux telemetry and does not independently send
it over the network. MCP clients may transmit tool results according to their
own data policies. See the full [Stallhunt privacy policy](PRIVACY.md) for the
data, storage, sharing, retention, and contact disclosures.
## License
Dual-licensed under [MIT](LICENSE-MIT) or [Apache-2.0](LICENSE-APACHE), at your option.
## Current state
For the current milestone, implemented capabilities, validation, known limits,
and the next recommended task, see [`docs/status.md`](docs/status.md). Planned
sequencing remains in [`docs/roadmap.md`](docs/roadmap.md).
Lo que la gente pregunta sobre stallhunt
¿Qué es guillem/stallhunt?
+
guillem/stallhunt es mcp servers para el ecosistema de Claude AI. Linux-first command-line performance triage Tiene 1 estrellas en GitHub y su última actualización registrada es del 2026-08-27.
¿Cómo se instala stallhunt?
+
Puedes instalar stallhunt clonando el repositorio (https://github.com/guillem/stallhunt) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar guillem/stallhunt?
+
Nuestro agente de seguridad ha analizado guillem/stallhunt y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene guillem/stallhunt?
+
guillem/stallhunt es mantenido por guillem. La última actividad registrada en GitHub es del 2026-08-27, con 0 issues abiertos.
¿Hay alternativas a stallhunt?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega stallhunt en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/guillem-stallhunt)<a href="https://claudewave.com/repo/guillem-stallhunt"><img src="https://claudewave.com/api/badge/guillem-stallhunt" alt="Featured on ClaudeWave: guillem/stallhunt" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!