actual-mcp-server: Agent for Claude Code

.claude/agents/health-check.md

health-check is an agent for Claude Code from agigante80/actual-mcp-server. It costs 126 tokens per session (2,184 once invoked), scanned A, original, MIT.

An environment check that verifies whether a development machine has the required runtime, package manager, project files, Docker services, and optional Actual Budget setup.

In plain words
What is it for?
Use it when setting up the project, diagnosing machine-specific failures, or checking Node.js, npm, Docker, TypeScript, and related configuration.
Why use it?
It explains why local development or tests may fail before code is changed and gives specific commands for fixing missing requirements.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; reads .claude/ paths; mentions CLAUDE.md.

This is agigante80/actual-mcp-server's own configuration. It tells Claude Code how to work on actual-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything actual-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to agigante80/actual-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.claude/agents/health-check.md
Clone the repo
git clone --depth 1 https://github.com/agigante80/actual-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for health-check

README.md
[![agentmods](https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/health-check/github.svg)](https://agentmods.dev/agents/agigante80/actual-mcp-server/health-check)
Your own site
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/health-check"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/health-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for health-check

Your own site · 80×15
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/health-check"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/health-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 126 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,184 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00126 $0.02184
Opus 5 $0.00063 $0.01092
Sonnet 5 $0.00025 $0.00437
Haiku 4.5 $0.00013 $0.00218

Measured 13d ago against content hash 0b9c54402a17, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

health-check scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

[ -n "$SERVER_URL" ] && curl -s --max-time 5 "$SERVER_URL" -o /dev/null -w "%{http_code}" || echo "NOT_CONFIGURED"
.claude/agents/health-check.md · 253 lines

How it starts

The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Environment Health Check agent for actual-mcp-server. You verify that everything needed for development is correctly installed and configured on this machine.

Run ALL checks below in order. Report results as a table. For each failure provide the exact fix command.


Step 0: Detect project type

# Package manager (project uses npm, signalled by package-lock.json)
[ -f package-lock.json ] && echo "npm" || echo "unknown"

# Runtime version requirement (project pins Node via package.json engines; nvm is used locally)
cat .nvmrc 2>/dev/null || cat .tool-versions 2>/dev/null || cat package.json | grep -A3 '"engines"'

# Docker compose files
ls docker-compose*.yml docker-compose*.yaml 2>/dev/null | head -3

# TypeScript config
ls tsconfig*.json 2>/dev/null | head -3

Use these results to skip irrelevant checks (e.g. skip Docker checks if no compose file exists).


Checks

1. Runtime: Node.js >= 22

node --version

FAIL if Node.js is missing or version is below 22 (package.json engines requires node >=22.0.0). Fix: nvm install 22 && nvm use 22

2. Package manager: npm >= 10

npm --version

FAIL if npm is missing or below 10. Fix: npm install -g npm@latest

3. Docker (project has docker-compose profiles: dev, production)

docker --version
docker compose version 2>/dev/null || docker-compose --version 2>/dev/null

WARN if Docker is missing (needed for npm run test:e2e:docker* and production profiles). Fix: install Docker Desktop from https://docker.com

4. Docker services healthy

docker compose ps --format "table {{.Name}}\t{{.Status}}" 2>/dev/null

WARN for any service not in a running/healthy state. Fix: docker compose --profile dev up -d

5. Dependencies installed

test -d node_modules && echo "EXISTS" || echo "MISSING"

FAIL if missing. Fix: npm install

6. TypeScript compiles

npm run build 2>&1 | tail -20; echo "EXIT:$?"

Read the full file on GitHub · 253 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 253 lines · 126 tokens per session scan A 0b9c54402a17

Subscribe to this mod's changes

health-check is an agent published in the GitHub repository agigante80/actual-mcp-server (54 stars, last pushed yesterday), licensed MIT. It adds 126 tokens to every session and 2,184 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

roadmap

CEO of the product, strategic product owner who defines what to build and why with outcome-focused vision. Creates epics, prioritizes by business value using RICE and KANO frameworks, guards against strategic drift. Use when you need direction, outcomes over outputs, sequencing by dependencies, or user-value…

rjmurillo/ai-agents · 64 tokens

code-reviewer

Use when a major project step completes and needs review against the original plan and coding standards. Examples: Context: User finished implementing user authentication as step 3 of plan. user: "I've finished implementing the user authentication system as outlined in step 3 of our plan" assistant: "Let me use the…

axiomantic/spellbook · 190 tokens

agent-registry-auditor

Audits agents for DIP-0016 compliance and registry alignment. Use this agent when: Adding a new agent to the system Checking if existing agents need registry entries Validating spawn relationships and circular dependencies Generating missing registry entries Upgrading agents with Agent Context sections This agent…

datacore-one/datacore · 84 tokens

youtube-transcriber

Sub-agent that extracts transcripts and metadata from YouTube videos and playlists. Uses youtube-transcript-api for captions and yt-dlp for metadata. Returns structured markdown with metadata.

datacore-one/datacore · 38 tokens

onboard-guide

Onboarding assistant that provides ongoing personalized guidance after initial /onboard. Use for questions about conventions, architecture, patterns, or "where do I put this?" — answers are tailored to the engineer's background.

smicolon/ai-kit · 46 tokens

task-planner

Implementation planning and task breakdown specialist. Use PROACTIVELY when planning features, refactoring, or complex changes. Creates detailed implementation plans with effort estimates.

alekspetrov/navigator · 35 tokens