loading…
Search for a command to run...
loading…
The dependency bloodhound for AI coding agents. Hound is a free, open-source MCP server that gives AI coding agents a nose for supply chain security. It scans p
The dependency bloodhound for AI coding agents. Hound is a free, open-source MCP server that gives AI coding agents a nose for supply chain security. It scans packages for vulnerabilities, checks licenses, inspects dependency trees, and detects typosquatting — with zero API keys, zero config, and zero cost.
The dependency bloodhound for AI coding agents.
npm version npm downloads CI License: MIT
AI coding agents recommend and install packages without knowing if they're safe — and most security tools require accounts, API keys, or paid plans to tell you. Hound fixes that: it scans for vulnerabilities, checks licenses, audits dependency trees, and detects typosquatting across 7 ecosystems — zero config, zero API keys, zero cost.
Hound is the only security tool built specifically for AI coding agents — works across npm, PyPI, Go, Cargo, Maven, NuGet, and RubyGems, and plugs into Claude Code, Cursor, VS Code, and any MCP client out of the box.
It uses two fully free, unauthenticated public APIs: deps.dev (Google Open Source Insights) and OSV (Google Open Source Vulnerabilities).
claude mcp add hound -- npx -y hound-mcp
Add to your MCP config file:
{
"mcpServers": {
"hound": {
"command": "npx",
"args": ["-y", "hound-mcp"]
}
}
}
{
"mcp": {
"servers": {
"hound": {
"type": "stdio",
"command": "npx",
"args": ["-y", "hound-mcp"]
}
}
}
}
| Client | Config path |
|---|---|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Cursor | ~/.cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
12 tools → Full reference with example outputs
| Tool | What it does |
|---|---|
hound_audit ⭐ |
Scan an entire lockfile for vulnerabilities across all dependencies |
hound_score |
0–100 Hound Score (vulns + scorecard + recency + license) with letter grade |
hound_compare |
Side-by-side comparison of two packages with a recommendation |
hound_preinstall |
GO / CAUTION / NO-GO verdict before installing a package |
hound_upgrade |
Find the minimum safe version upgrade that resolves all known vulns |
hound_license_check |
Scan a lockfile for license compliance against a policy |
hound_vulns |
All known vulnerabilities for a package version, grouped by severity |
hound_inspect |
Full package profile — license, vulns, scorecard, stars, dep count |
hound_tree |
Full resolved dependency tree with transitive deps |
hound_typosquat |
Detect typosquatting variants of a package name |
hound_advisories |
Full advisory details by GHSA, CVE, or OSV ID |
hound_popular |
Scan popular packages for known vulnerabilities |
Supported ecosystems: npm · pypi · go · maven · cargo · nuget · rubygems
3 prompts you can invoke directly from your AI client. → Full prompt reference
| Prompt | What it does |
|---|---|
security_audit |
Full project security audit — vulns, licenses, typosquats |
package_evaluation |
Go/no-go recommendation before adding a new dependency |
pre_release_check |
Pre-ship dependency scan that flags release blockers |
→ See full examples with real lockfiles and expected output
hound_audit on an existing lockfile to get a full report in secondshound_preinstall to get a GO / CAUTION / NO-GO verdicthound_license_check to ensure no GPL or AGPL packages sneak into a commercial projectgit clone https://github.com/tiluckdave/hound-mcp.git
cd hound-mcp
pnpm install
pnpm build
pnpm test # run tests
pnpm check # typecheck + lint + test
bun.lockb parser — Bun lockfile supportgradle.lockfile parser — Gradle (Java/Android) ecosystem supporthound_diff tool — compare two lockfile snapshots to surface newly introduced riskshound_audit as a PR check without an AI agentContributions are welcome. Read CONTRIBUTING.md to get started.
The one rule: Hound must stay zero-config and free forever. Don't add features that require API keys or accounts.
Good first issues are labeled and ready.
💬 Questions or ideas? Open a Discussion
MIT © 2026 Tilak Dave
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"hound-mcp": {
"command": "npx",
"args": []
}
}
}