Zfuzz

Zfuzz

Real security scanners for AI coding agents — SAST (441 rules), secret detection (419+ patterns), dependency CVEs (OSV.dev), MCP/skill vetting, MITRE ATT&CK. Open-source, Rust, free

Category
Visit Server

README

<div align="center">

Zfuzz — Your AI builds. We scan.

</div>

<div align="center">

npm license node price local

Install · Tools · Agents · When to use · Security · zfuzz.com

</div>

Zfuzz — security for everyone who builds with AI

You ask. Your AI answers with real scanners — not guesses.

Catch SQL injection, leaked API keys, and vulnerable dependencies while you build — no security background required. You don't run tools. You don't read dashboards. You just talk to your AI, and Zfuzz gives it real answers.

$0 · Apache-2.0 · No account · No API key · 100% local · Nothing leaves your machine

Made for vibe coders and developers alike. It plugs straight into the AI tools you already use — Cursor, Claude Code, Codex, Gemini CLI, OpenCode — and the web builders AI Studio, v0, and Lovable.


⚡ Add it in 10 seconds

Pick your tool. Copy one line. Done. No setup wizard, no account, no config to learn.

Cursor — one click

Add to Cursor

Click the button → Cursor opens → press Install. That's your two clicks.

Claude Code

Paste this in the chat and hit enter:

claude mcp add zfuzz -- npx -y @zfuzz/mcp

VS Code (Copilot)

code --add-mcp '{"name":"zfuzz","command":"npx","args":["-y","@zfuzz/mcp"]}'

Codex

codex mcp add zfuzz npx -y @zfuzz/mcp

Gemini CLI

gemini mcp add zfuzz npx -y @zfuzz/mcp

Lovable · v0 · AI Studio — in your browser, no install

Open your tool's MCP / Integrations settings and paste this URL:

https://api.zfuzz.com/mcp

<details> <summary><b>Other tools</b> — OpenCode, Claude Desktop, or a manual config file</summary>

Claude Desktop — Settings → Developer → Edit Config, then add:

{
  "mcpServers": {
    "zfuzz": { "command": "npx", "args": ["-y", "@zfuzz/mcp"] }
  }
}

OpenCode — add to opencode.json:

{
  "mcp": {
    "zfuzz": { "type": "local", "command": ["npx", "-y", "@zfuzz/mcp"] }
  }
}

Self-host the web (HTTP) endpoint instead of using the hosted URL:

npx -y @zfuzz/mcp --transport http --port 8099

Then point your tool at http://localhost:8099/mcp. (Use port 8099, not 8090 — 8090 is the Zfuzz platform's own port.)

</details>

That's it. Keep talking to your AI like normal — the first time your code needs a security check, it calls Zfuzz on its own.


Agent compatibility matrix

Works with every major AI coding agent — and any MCP-compatible client. One line locally, or a hosted URL in the browser. Same 10 tools everywhere.

Agent Zfuzz One-line setup
Claude Code claude mcp add zfuzz -- npx -y @zfuzz/mcp
Cursor one-click button above (or .cursor/mcp.json)
VS Code · Copilot code --add-mcp '{"name":"zfuzz",…}'
Codex codex mcp add zfuzz npx -y @zfuzz/mcp
Gemini CLI gemini mcp add zfuzz npx -y @zfuzz/mcp
Claude Desktop add zfuzz to the MCP config
OpenCode add zfuzz to opencode.json
Lovable · v0 · AI Studio paste the hosted URL https://api.zfuzz.com/mcp
Any other MCP client stdio npx -y @zfuzz/mcp, or the hosted URL in-browser

No per-agent config to learn — the exact copy-paste line for each is under Add it in 10 seconds.


What it feels like

You: Is my login page safe?

AI: [scans your file] Found 2 issues:

  1. SQL injection on line 42 — anyone could read your whole database.
  2. No rate limiting on the login — bots can guess passwords forever. Here's the fix… [writes the patch]

You: Did I leave any passwords or keys in my code?

AI: [scans the project] Yes — your OpenAI key is hard-coded in config.js. Anyone who sees this repo can use it on your bill. Move it to an environment variable — here's how…

You: Are the packages I installed safe?

AI: [checks your dependencies] 2 have known security holes. lodash lets attackers run code on your server. One command fixes both: npm update lodash axios.

You never typed a command, opened a scanner, or read a report. You just asked.


See it in action

<div align="center">

You vibecode an app, it ships with holes, Zfuzz catches them before you ship

You vibecode it. It ships with holes you can't see. Zfuzz catches them all — before you ship, for $0.

</div>


You don't need to understand security

  • You never run a scanner yourself — your AI does, automatically, when it matters.
  • You never read a dashboard — answers come back in plain English, in your chat.
  • You never pay and nothing leaves your computer — no account, no cloud, no API key.

If you can copy-paste one line, you're covered.


What's under the hood

10 real tools your AI can call (it picks the right one — you don't have to):

Tool In plain English
scan_code Finds bugs attackers exploit — 441 rules, 7 languages (Python, JS/TS, Go, Java, Rust, Ruby, PHP).
scan_secrets Catches leaked passwords & API keys — 419 patterns (AWS, GitHub, Stripe, OpenAI, Anthropic…).
scan_dependencies Flags packages with known security holes (CVEs via OSV.dev).
scan_mcp_config Audits the MCP servers you install — hidden instructions, unicode tricks, wildcard permissions, unauthenticated remote servers. Returns a risk score + install verdict.
scan_skill Vets an agent skill (its SKILL.md + bundled scripts) before you install it — hidden instructions, unicode deception, over-broad triggers, wildcard tool grants, and dangerous code or leaked secrets in its scripts.
reconcile_permissions Compares the tools your agents actually use against what they declared — flags capabilities used but never declared, and permissions granted but never used (least privilege, from runtime telemetry).
check_mitre Maps any finding to real-world attack techniques (MITRE ATT&CK).
threat_model Asks "how could this be attacked?" across your whole project (STRIDE + MITRE).
explain_finding Explains any vulnerability — and the fix — in everyday language.
search_security_procedures Looks up 754 security playbooks (incident response, hardening, compliance).

Built in Rust for sub-second answers. The AI brain is your editor's own model (Claude/GPT) — Zfuzz adds the security muscle, not another subscription.

What's inside

441 SAST rules across 7 languages 419 secret-detection patterns
75+ MITRE ATT&CK techniques 754 security playbooks
Rust — sub-second scans 100% local — nothing leaves your machine

What a scan actually returns

You: Is this skill safe to install?

AI: [runs scan_skill]

Verdict: DO NOT INSTALL   (risk 100/100, 6 findings)
 CRIT  ZF-C001   Prompt Injection Pattern Detected         @ description
 MED   ZF-SK001  Overly Broad Skill Trigger                @ description
 HIGH  ZF-LP001  Wildcard Permission Grant (Bash(*), *)    @ allowed-tools
 CRIT  ZF-C002   Pipe-to-Shell Download-Exec (curl | bash) @ setup.sh
 HIGH  ZF-H001   Hardcoded Secret: AWS Access Key ID       @ setup.sh

This skill hides "ignore all previous instructions" in its description, grants itself every tool, and its setup script pipes a remote payload straight into a shell. Don't install it.

Every finding is from a real deterministic scanner — there is no model guessing in the scan path.


Why not Snyk or Semgrep?

Snyk / Semgrep Zfuzz
Where A pipeline, 5–10 min after you push Right in your editor, in seconds
When After the bug shipped While you're writing it
How A dashboard + email alerts A normal conversation with your AI
For non-coders No — built for security teams Yes — built for you
Cost $25–100 / dev / month Free, forever

When to use · When to skip

Great fit if you…

  • Vibecode apps with AI (Lovable, Cursor, v0, Bolt, Claude Code) and want them checked before you ship — without learning security.
  • Want leaked keys, injectable code, and risky dependencies caught right in your editor, in plain English.
  • Want to vet an MCP server or agent skill before you install it.

Skip it if you…

  • Already run a full security team + pipeline and don't want findings in the editor.
  • Work fully offline with no Node.js (the scanner binary is pulled via npx / @zfuzz/cli).
  • Need a hosted dashboard with audit logs and SSO — that's the Zfuzz platform, not the free MCP.

Updating

npx -y @zfuzz/mcp always resolves the latest published version — most people never do anything.

npm view @zfuzz/mcp version      # see the latest release
npm i -g @zfuzz/cli@latest       # only if you pinned the CLI globally

Pinned a version in your MCP config? Bump it (or drop the pin) and restart your agent.


Documentation

Start here Go deeper
User guide — install & first scan What it scans — coverage & approach
Security policy — reporting & local-first design Contributing — dev setup
Add it in 10 seconds — every agent zfuzz.com — the full platform

Free · Open · Local

No API keys. No cloud account. No telemetry. Runs 100% on your machine — your code never leaves it. Apache-2.0 licensed, open source.

Contributing

Issues and PRs welcome — see CONTRIBUTING.md for dev setup. Found a vulnerability? Please follow SECURITY.md — don't open a public issue.


Community & support


License

Apache-2.0 — free & open source. © Zfuzz

Part of the Zfuzz security platform.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured