agent-vitals
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., "@agent-vitalscheck the health of my agent stack"
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.
vitals
Give your AI agent a memory of its own infrastructure.
Quick start
uv tool install agent-vitals
av install # detects hosts, wires MCP + priming skillThat's it. 30 seconds, no daemon, no cloud, no accounts.
After install, restart your agent host so it picks up the new MCP server. Then the next time it runs, it'll call vitals_summary before risky operations — automatically.
Shadow & stale detection — cron, systemd, MCP, skills. Shows everything; filters to broken references only.
Burnout tracking — per-agent completion rates, trends, stuck-session heuristics.
Doom-loop detection — exact + soft loops in Bash and Edit. Excludes polling; compares edits by content.
Unused-tool finder — per-server + per-tool usage. GitHub-measured 8–12KB overhead per unused tool, per turn.
Token cost + Effective Tokens — model-aware pricing, ET metric, downgrade suggestions.
SSH polling detector — finds repeated SSH commands to the same host.
Overlap detection — duplicate/similar tool names across MCP servers.
Session compaction — keep last N events, backup first, dry-run preview.
Coaching — generates optimized system prompts from your actual session data.
Trace suite — recorded session forensics for Claude Code and pi.
av trace list/summary/replay/diff/errors/profile/grep/export/watch/suggest. No payloads, no secrets.Pre-action hooks — PATH wrappers around
crontab/systemctlthat gate mutations until vitals is fresh.
Related MCP server: iris-eval/mcp-server
What your agent sees
When your agent (pi, Claude Code, OpenCode, Cursor, Codex) calls vitals_summary, it gets:
▄▀ vitals — local agent stack health
shadow: 13 autonomous thing(s) configured (mcp: 8, systemd: 5)
subagent burnout (7d): 5 runs, 100% completion ✓
claude code (7d): 170 sessions, 45,626 events, ⚠ 36 stuck
- biggest stuck-looking session: 7,118 eventsThat's not a CLI you read. That's a tool your agent calls from inside its own loop — before it does anything risky.
How it works

Three moves. No daemon. No cloud.
Install —
uv tool install agent-vitals && av install. Registers the MCP server and priming skill for your agent host.Observe — the agent calls
vitals_summarybefore risky operations. Hooks gatecrontab/systemctluntil vitals is fresh.Optimize — run
av cost,av loops,av coachto extract patterns and shrink the model's workload.
Before / after
User: schedule a daily backup at 2am
Agent: yep, done.
0 2 * * * /home/me/backup.sh
>> /tmp/backup.log 2>&1… and /home/me/backup.sh doesn't exist. Crontab fails silently forever.
User: schedule a daily backup at 2am
Agent: one moment — verifying first.
→ shadow_stale (no other cron broken)
→ check backup.sh (exists? writable?)
→ write crontab entry
→ shadow_stale (confirm no breakage)
✓ crontab updated.User: is my agent setup healthy?
Agent: looks fine to me!(blind vibes)
User: is my agent setup healthy?
Agent: → vitals_summary
shadow: 13 autonomous thing(s) configured
claude code (7d): ⚠ 36 stuck sessions
- biggest: 7,118 events
⚠ 36 sessions look stuck. want me to triage?The diff is vibes vs. data.
Install
uv tool install agent-vitals
av install # detects every agent host on your box and wires them up
# restart your agent host so it picks up the new MCP serverThat's the whole setup. 30 seconds.
Pre-action hooks (v0.3.0)
Priming asks the agent to call vitals. Hooks refuse the operation when it hasn't.
av hooks install # one-time setup (~3 seconds)
av hooks status # check freshness
av hooks disable # temporarily turn off (rename to *.disabled)
av hooks uninstall # full removalAfter av hooks install, the one-liner above is appended to your ~/.bashrc / ~/.zshrc. Open a new terminal and crontab -e or systemctl --user enable foo will be refused at the OS level unless an agent (or av doctor) refreshed the vitals stamp in the last 60 seconds.
⚡ vitals hook: refused `crontab -e`
reason: vitals stamp is 5m12s old — exceeds 60s window.
stamp: 5m12s ago
refresh: call any vitals tool or run `av doctor`
bypass: VITALS_BYPASS=1 crontab -eWhat's gated: crontab -e/-r/-i/<file>/- and systemctl --user {enable,disable,start,stop,restart,reload,mask,unmask,daemon-reload,...}.
What's NOT gated: crontab -l (reads), systemctl status / list-* / is-active / show / cat (reads), and power management (reboot, poweroff, suspend) — a stale stamp must never block a reboot.
Bypass for emergencies: VITALS_BYPASS=1 crontab -e skips the check.
What av install does
$ av install
detected 3 agent host(s)
┏━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ host ┃ config ┃ status ┃
┡━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ pi │ ~/.pi/agent/mcp.json │ detected │
│ Claude Code │ ~/.claude/.mcp.json │ detected │
│ Codex CLI │ ~/.codex/config.toml │ detected │
└─────────────┴──────────────────────────────────┴────────━━┘
installing:
┏━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃ host ┃ mcp config ┃ skill/rule ┃
┡━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ pi │ added │ installed ┃
│ Claude Code │ added │ already installed ┃
│ Codex CLI │ added │ installed ┃
└─────────────┴────────────────────┴────────────────━━━┛
✓ done. Restart your agent host.Host | MCP config | Priming |
pi |
|
|
Claude Code |
|
|
Cursor |
|
|
OpenCode |
|
|
Codex CLI |
|
|
Idempotent. Re-runav install any time — existing entries are skipped, never duplicated. TOML configs (Codex CLI) get TOML sections; JSON configs get JSON entries.
The five tools
Tool | Returns | When the agent should reach for it |
| plain English | always first — health check, before tasks, when stuck |
| JSON array | before infra changes — see everything running on the user's behalf |
| JSON array | before claiming "your crontab is fine" or scheduling new cron work |
| JSON object | after long tasks, to compare to baseline |
| JSON array | when suspecting a loop, to see if other sessions are stuck too |
| text report | after a session is "taking forever" or cost spikes — detects exact + soft doom loops |
| text report | after installing a new MCP server, or weekly — reports unused servers + per-tool usage |
| text report | monthly budget review — uses observed model pricing + Effective Tokens + model downgrade suggestions |
| text report | identify token-heavy tools — which tools burn the most tokens per call |
| text report | get concrete optimization suggestions based on usage patterns |
| text report | detect SSH polling loops — repeated SSH commands to same host |
| text report | detect overlapping MCP tools across servers — possible redundancy |
| text report | compact large session files to reduce context bloat |
| text report | preview compaction savings without modifying files |
| text report | generate optimized system prompts + playbooks from real session data |
All tools are local-only, read-only, safe to call repeatedly. None of them modify state.
The trigger table
The table av install installs into your priming skill — so the agent knows when to reach for each tool without you asking:
Trigger | Tool |
Starting any non-trivial task |
|
About to schedule cron / timer / systemd work |
|
After a long task completes |
|
Suspect you're in a loop |
|
User asks "is X working?" |
|
About to claim "all cron is fine" |
|
About to recommend an MCP install |
|
User asks "what's broken?" |
|
Agent failed, need to debug why |
|
User asks "what did the agent just do?" |
|
Agent session has errors |
|
Need tool performance breakdown |
|
Looking for specific tool usage |
|
Agent gave bad advice, need to know why |
|
v0.3.0 changes this.
av hooks installdeploys PATH-level wrappers aroundcrontabandsystemctl --userthat refuse any mutation when the vitals stamp is older than 60 seconds. Read operations (crontab -l,systemctl status, etc.) are never gated. See Pre-action hooks below.
Anti-patterns this exists to prevent
These are the failure modes that made us build vitals. If you see an agent doing any of these, it's a sign the priming didn't reach them — or they needv0.3.0 hooks.
❌ "Your crontab is fine" — without calling
shadow_stalefirst❌ Scheduling cron / systemd work — without verifying the target binary exists
❌ Starting a 4-hour task — while 6 other sessions are stuck on the same box
❌ Pretending a task completed — without checking
burnout_summary❌ Recommending an MCP install — without
shadow_listto check for duplicates❌ Debugging slowness — without first checking
vitals_summary
What it scans
Source | Path | What it finds |
Crontab |
| flags targets that no longer exist |
systemd user timers |
| systemd-v255 quirk-resistant (computes |
MCP configs |
| one entry per host registration |
Codex CLI |
| TOML-aware, appends |
Skill frontmatter |
| surfaces skills with |
pi subagent history |
| per-agent completion + trend |
Claude Code sessions |
| session counts + stuck-loop heuristic |
pi sessions |
| parsed by trace module for replay/diff |
Claude sessions |
| parsed by trace module for replay/diff |
av # one-shot health summary
av doctor # summary + actionable recommendations
av shadow # what's configured on your box
av shadow --watch # live refresh every 2s
av burnout # completion metrics, last 7 days
av burnout --days 30
av detect # list detected agent hosts
av install # interactive installer — pick components, pick hosts
av init # deprecated alias for `av install`
av drift # find inconsistencies across hosts (MCP, skills, hooks)
av sessions # list session files with age + size
av snapshot # tar.gz of agent state (mcp configs, skills, hooks)
av mcp # start the MCP server (stdio)
# Efficiency suite (v0.6.0+)
av loops # detect exact + soft doom loops in sessions
av loops -n 50 # show up to 50 findings
av unused # find unused MCP servers + per-tool usage
av cost # token spend with model-aware pricing + Effective Tokens
av tokens # identify token-heavy tools
av tokens --suggest # get optimization suggestions
av ssh # detect SSH polling loops
av overlap # detect overlapping MCP tools
av compact # compact large session files
av compact --dry-run # preview compaction without changes
av coach # generate optimized system prompts from session data
# Trace (v0.7.0)
av trace list # list sessions with event counts and source type
av trace summary <session> # turns, tools, errors, wall duration
av trace replay <session> # step-by-step replay (no payloads)
av trace diff <a> <b> # structural diff between two sessions
av trace errors <session> # show only error events
av trace profile <session> # per-tool breakdown: calls, errors, avg duration
av trace grep <session> <pat> # filter events by tool name or type
av trace export <session> # export normalized events to JSON
av trace suggest <session> # actionable suggestions from session data
av trace watch <session> # tail a session JSONL live (Ctrl-C to stop)
uv ── one-tool install / build / publish
typer ── CLI
rich ── terminal rendering
pyyaml ── SKILL.md frontmatter parsing
mcp (FastMCP) ── MCP server, stdio transport
pytest ── 295 tests across 12 modules~6000 lines of Python + 295 tests + priming SKILL.md. GPL v3 licensed.
Roadmap
v0.1.0 —
shadow+burnoutCLI commandsv0.2.0 — MCP server +
av installfor 5 host typesv0.7.0 — trace suite:
av trace list/summary/replay/diff/errors/profile/grep/export/watch/suggest. Content-agnostic adapters for Claude Code and pi JSONLs. MCP tools exposed.v0.7.0 —
shadow live(running agent processes, ps-tree view)v0.8.0 — cross-session "agent déjà vu" detector (you researched this codebase 3 weeks ago)
Contributing
Issues and PRs welcome. Two things to know:
Scanners in
src/agent_vitals/scanners.pyare independent and fail gracefully. Add a new source by writing onescan_*()function and adding it toscan_all().MCP tool docstrings are the product. The docstring on
vitals_summaryis the instruction the agent reads. Write it as a directive to the agent ("always call this first when…"), not API docs.
When you open a PR, paste the output of av shadow on your box so we can see what surfaces in your environment.
License
GPL v3. See LICENSE.
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.
Related MCP Servers
- Flicense-qualityCmaintenanceAn observability tool for agentic AI pipelines that intercepts MCP and Python tool calls to provide real-time metrics, session replays, and alerts via a local dashboard. It enables centralized monitoring of multiple MCP servers through multiplexer and proxy modes without requiring changes to existing agent code.Last updated3
- AlicenseAqualityBmaintenanceMCP-native agent evaluation and observability server. Log traces, evaluate output quality with 12 built-in rules (PII detection, prompt injection, cost thresholds), and track agent costs. Real-time dashboard, OTel-compatible spans. Self-hosted, MIT licensed.Last updated9747MIT
- Alicense-qualityBmaintenanceData observability for AI agents. Query alerts, monitor freshness, investigate schema drift, and trace lineage across your data warehouse via 53 MCP tools.Last updated1MIT
- AlicenseAqualityAmaintenanceUnified observability gateway for AI agents — one MCP server for Prometheus, Loki, and any backend.Last updated126Apache 2.0
Related MCP Connectors
Local-first RAG engine with MCP server for AI agent integration.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
Agent Replay Debugger MCP — record every agent step + deterministic replay. Step-debugger for
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/anirudhprashant/agent-vitals'
If you have feedback or need assistance with the MCP directory API, please join our Discord server