Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/instructions/tiluckdave/hound-mcp/claude-md)<a href="https://agentmods.dev/instructions/tiluckdave/hound-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/tiluckdave/hound-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01703 | $0.01703 |
| Opus 5 | $0.00851 | $0.00851 |
| Sonnet 5 | $0.00341 | $0.00341 |
| Haiku 4.5 | $0.00170 | $0.00170 |
Grade A, and why
hound-mcp CLAUDE.md scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hound MCP — Contributor Guide
This file is for contributors making bug fixes and enhancements. It describes how the code is structured, how to work with it, and the conventions to follow.
Tech Stack
| Concern | Tool |
|---|---|
| Language | TypeScript (strict mode) |
| Runtime | Node.js 18+ |
| MCP SDK | @modelcontextprotocol/sdk |
| Validation | Zod (import from zod/v4) |
| Build | tsup |
| Testing | Vitest |
| Linting | ESLint + typescript-eslint |
| Formatting | Prettier |
| Package manager | pnpm |
Project Structure
hound-mcp/
├── src/
│ ├── index.ts # Entry point — starts stdio transport
│ ├── server.ts # Creates McpServer, registers all tools & prompts
│ ├── tools/
│ │ ├── vulns.ts # hound_vulns
│ │ ├── inspect.ts # hound_inspect
│ │ ├── tree.ts # hound_tree
│ │ ├── typosquat.ts # hound_typosquat
│ │ ├── advisories.ts # hound_advisories
│ │ └── popular.ts # hound_popular
│ ├── prompts/
│ │ └── index.ts # Registers the 3 built-in MCP prompts
│ ├── api/
│ │ ├── depsdev.ts # deps.dev API client (package metadata, dep trees, scorecard)
│ │ └── osv.ts # OSV API client (vulnerabilities, batch queries)
│ ├── utils/
│ │ └── getDefaultVersion.ts # Shared helper for picking default package version
│ └── types/
│ └── index.ts # Shared types (Ecosystem, etc.)
├── tests/
│ ├── api/ # Unit tests for API clients
│ ├── utils/ # Unit tests for shared utilities
│ ├── parsers/ # Unit tests for lockfile parsers
│ └── tools/ # Unit tests for tools
├── eslint.config.js
├── tsconfig.json
├── tsup.config.ts
└── vitest.config.ts
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.
- 6d ago First seen · 209 lines · 1,703 tokens per session scan A c93c47b306c5
hound-mcp CLAUDE.md is an instructions file published in the GitHub repository tiluckdave/hound-mcp (17 stars, last pushed 3d ago), licensed MIT. It adds 1,703 tokens to every session, about $0.0085 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
depsguard AGENTS.md
Instructions for arnica/depsguard, covering agents, project overview, git workflow, ai disclosure and commit messages.
proof-of-commitment CLAUDE.md
Instructions for piiiico/proof-of-commitment, covering commit, what this is, the thesis, architecture (v0.2) and key decisions.
dependency-fitness-mcp CLAUDE.md
Claude Code instructions for TweedBeetle/dependency-fitness-mcp, covering dependency-fitness-mcp — project memory, the product invariant (the moat — don't erode it), commands, layout and build gotchas (sdk 1.29 + zod v4).
node-modules-inspector AGENTS.md
Instructions for antfu/node-modules-inspector, covering agents.md, layout, commands (from repo root) and conventions.
pi-coding-agent-forge AGENTS.md
AGENTS.md instructions for Firstp1ck/pi-coding-agent-forge, covering repository documentation rules, documentation goal, required documentation layers, readme.md — human guide and technical.md — advanced user reference.
kkRepo copilot-instructions.md
Copilot instructions for klboke/kkRepo, covering kkrepo copilot instructions, engineering rules, build and test, compatibility workflow and review focus.