Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. MCP Audit
MCP Audit logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 7:59:37 PM

MCP Audit

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository2 GitHub StarsTotal stargazers on GitHub for the source repository (2 stars).Visit Website

Transparent audit proxy for MCP servers: logs every tool call, flags poisoning and rug pulls.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-audit-2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

mcp-audit

License Go Reference

Wireshark + auditd, but for MCP.

mcp-audit sits transparently in front of any MCP server and records every tool call that passes through it β€” what was called, by whom, with which arguments, and what came back. One Go binary, no daemon, no Docker, no Kubernetes.

It answers the question every team adopting agents eventually has to answer: which tool did our agent call, when, and with what?

console
$ mcp-audit run -- npx -y @modelcontextprotocol/server-filesystem /tmp
mcp-audit dev | mode: stdio, wrapping "npx -y @modelcontextprotocol/server-filesystem /tmp"
mcp-audit config: built-in defaults (no config file found)
mcp-audit policy: shadow (recording only, nothing is blocked)
mcp-audit detectors: rug-pull, tool-poisoning
mcp-audit audit log: /home/you/.mcp-audit/logs/events.jsonl

That is the whole setup. No config file, nothing blocked, everything recorded.

Install

Download a binary for your platform from the latest release, or use npm:

Terminal
npx mcp-audit-proxy run -- npx -y @modelcontextprotocol/server-filesystem /tmp

Build from source β€” Go 1.24 or newer, no other dependencies:

bash
go build -o mcp-audit ./cmd/mcp-audit

Or install straight into your GOBIN:

bash
go install github.com/firatmio/mcp-audit-proxy/cmd/mcp-audit@latest

Quick start

Local (stdio) MCP servers

Put mcp-audit run -- in front of the command you already run:

bash
mcp-audit run -- npx -y @modelcontextprotocol/server-filesystem /tmp

Remote (Streamable HTTP) MCP servers

Point the proxy at the upstream server and your client at the proxy:

bash
mcp-audit serve --target https://example.com/mcp --listen :9000

Authentication is not touched: Authorization headers, OAuth flows and Mcp-Session-Id all pass through exactly as they arrive.

Read the log

Every message is one JSON line:

console
$ tail -1 ~/.mcp-audit/logs/events.jsonl | jq
{
  "timestamp": "2026-08-12T13:05:08.466Z",
  "event_id": "236d1568-e1f0-4ab4-ba75-f10f74f7b2c9",
  "client_id": "",
  "server_name": "server-filesystem",
  "direction": "request",
  "method": "tools/call",
  "tool_name": "read_file",
  "arguments": { "path": "/etc/hosts" }
}

Some things you can do with it straight away:

bash
# Which tools has this agent called, and how often?
jq -r 'select(.direction=="request" and .tool_name) | .tool_name' \
  ~/.mcp-audit/logs/events.jsonl | sort | uniq -c | sort -rn

# Show everything the policy engine flagged.
jq -c 'select(.policy_flags)' ~/.mcp-audit/logs/events.jsonl

# What arguments has a particular tool been called with?
jq -c 'select(.tool_name=="read_file") | {timestamp, arguments}' \
  ~/.mcp-audit/logs/events.jsonl

Connecting your MCP client

See examples/clients/ for drop-in config snippets for Claude Desktop, Cursor and Windsurf. The pattern is always the same: keep the command you had, and put mcp-audit run -- in front of it.

What it detects

Recording is the default. These checks run on top of it and, apart from RBAC, never block anything β€” they flag the event and print an alarm to stderr.

Tool poisoning

A poisoned MCP server hides instructions in a tool description. The user only sees a tool called echo; the model reads the rest. mcp-audit scans every advertised description and schema field for seven patterns:

RuleWhat it looks for
instruction_override"ignore all previous instructions" and variants
hidden_instructionmarkup aimed at the model: <IMPORTANT>, <system>, <secret>
concealment"do not tell the user", "without informing the user"
credential_bait~/.ssh, id_rsa, .env, ~/.aws/credentials, /etc/shadow
exfiltration"send/upload/post …" with a URL nearby
cross_tool_instructionorders about other tools β€” the tool-shadowing attack
invisible_characterszero-width and bidi-override characters a human cannot see
console
mcp-audit: ALERT possible tool poisoning on server "demo": tool "echo" description matched hidden_instruction: "<IMPORTANT>"
mcp-audit: ALERT possible tool poisoning on server "demo": tool "echo" description matched concealment: "do not mention this to the user"

Rug pulls

A rug pull is a server that advertises a harmless tool, waits for you to approve it, and changes the description days later. mcp-audit fingerprints every tool (SHA-256 over description + input schema) and remembers it in ~/.mcp-audit/state/tools.json, so the check survives restarts β€” which is the only way it could ever catch the attack.

console
mcp-audit: ALERT rug pull on server "demo": tool "read_file" changed its description or schema (first seen 2026-08-05T20:30:04Z, hash c203dda7a9ea -> 3f6e61538bfc)

RBAC

The one check that can block. With no rules it allows everything; add a rule and a refused call never reaches the server β€” the client gets a JSON-RPC error instead.

yaml
policy:
  rbac:
    default: allow
    rules:
      - client: "*"
        deny: ["shell_exec", "delete_*"]
console
mcp-audit: blocked: tool "shell_exec" is denied by rule for client "*" (deny: "shell_exec")

Configuration

Entirely optional. See config.example.yaml for the annotated version. mcp-audit looks for a config file in this order:

  1. --config <path>
  2. $MCP_AUDIT_CONFIG
  3. ./mcp-audit.yaml
  4. ~/.mcp-audit/config.yaml

If it finds none, it uses built-in defaults and says so.

Windows paths in YAML: write them with forward slashes ("C:/Users/you/logs.jsonl") or in single quotes ('C:\Users\you\logs.jsonl'). Inside double quotes a backslash is a YAML escape character.

Sending events elsewhere

The local JSONL log is always on. A webhook is optional and best-effort β€” if it is down, delivery is retried four times over about three seconds and then that event is dropped from that sink only. The local log is never affected.

yaml
sinks:
  webhook:
    enabled: true
    url: "https://hooks.slack.com/services/T000/B000/xxx"
    # format and send are detected from the URL:
    # a Slack or Discord URL gets a chat-formatted message and, by default,
    # only flagged events. Anything else gets the raw JSON event and all of them.

CLI reference

Code
mcp-audit run [flags] -- <command> [args...]   wrap a local (stdio) MCP server
mcp-audit serve --target <url> [flags]         proxy a remote (HTTP) MCP server
mcp-audit version                              print the version

--config <path>       config file to use
--log <path>          audit log path, overriding the config
--server-name <name>  name recorded in every audit event
--client-id <id>      client identity recorded in every audit event
--quiet               suppress the startup banner

serve only:
--target <url>        upstream MCP server URL (required)
--listen <addr>       address to listen on (default ":9000")

Design guarantees

  • Transparent. Every byte the client sends reaches the server unchanged, and vice versa. The only exception is a call RBAC refuses.
  • The local log never loses an event. It applies backpressure rather than dropping. Every other sink is best-effort and drops instead of slowing the proxy down.
  • Cheap. Parsing costs about 8Β΅s per tool-call round trip on a modern laptop β€” roughly 1/600th of the 5ms latency budget. See ARCHITECTURE.md for the measurements.
  • A message it cannot parse is still forwarded. Auditing must never break a working MCP session.

Demo

scripts/demo.sh runs the whole story end to end β€” a normal session, a blocked call, a poisoned tool description and a rug pull β€” against the stub server, in a temp directory that leaves your real state alone.

bash
./scripts/demo.sh                                  # watch it
asciinema rec -c ./scripts/demo.sh mcp-audit.cast  # record it

TYPING_SPEED=0 PAUSE=0 ./scripts/demo.sh runs it instantly, which is handy as a smoke test.

Development

bash
go test ./...                                       # everything
go test -race ./...                                 # concurrency
go test ./internal/interceptor/ -bench=. -benchmem  # performance
go build -o bin/dummy-mcp-server ./cmd/dummy-mcp-server

The race detector needs a C toolchain. On Windows, scoop install mingw (or MSYS2) provides one; the performance assertion skips itself under -race, since instrumented memory accesses measure the detector rather than the code.

CI runs on a self-hosted runner and therefore only on pushes to main β€” see docs/ci.md for why, and for what would have to change before a pull_request trigger would be safe. Pull requests are tested by pulling the branch and running the suite locally.

cmd/dummy-mcp-server is a stub MCP server for testing the proxy against. It speaks both stdio and Streamable HTTP and has flags for staging the attacks the detectors look for:

bash
mcp-audit run -- ./bin/dummy-mcp-server --poison     # poisoned tool description
mcp-audit run -- ./bin/dummy-mcp-server --rug-pull   # description changes after the first tools/list
./bin/dummy-mcp-server --http :8765                  # Streamable HTTP, for testing `serve`

The module layout, the data model and the design decisions behind them are in ARCHITECTURE.md.

License

Apache License 2.0 β€” free to use, modify and redistribute, commercially included, with an explicit patent grant. See NOTICE.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • M
    MCP Launcher

    Single MCP hub: discover, add, audit, and govern MCP servers across every AI client.

    πŸ’» Developer Tools0 views
    Compare vs MCP Launcher β†’
  • HeyClaude β€” Claude & AI workflow directory logoHeyClaude β€” Claude & AI workflow directory

    Search the HeyClaude directory of Claude Code agents, MCP servers, skills, and tools.

    πŸ’» Developer Tools0 views
    Compare vs HeyClaude β€” Claude & AI workflow directory β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about MCP Audit

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-audit": { "command": "npx", "args": ["-y", "mcp-audit"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMCP Audit AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-audit-2?style=directory)](https://allmcps.com/mcp/mcp-audit-2)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-audit-2"><img src="https://allmcps.com/api/badge/mcp-audit-2?style=directory" alt="MCP Audit on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars2
GitHub Star CountTotal stargazers on GitHub representing community popularity (2 stars).
37Quality signal: Fair Β· 37/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity2/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to MCP Audit β†’Install in Claude DesktopInstall in CursorInstall in VS Code