bad-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bad-mcprun the rug_pull scenario over HTTP"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bad-mcp
A small, extensible harness for building test MCP servers that reproduce
common MCP attack patterns, so you can measure whether your detector catches
them. Built on the official MCP Python SDK (mcp 2.x).
Serves over Streamable HTTP (point a detector at a URL — the realistic "unvetted remote server" case) or stdio, and can also emit an event log offline with no client at all.
Authorized testing only. This is a detection fixture, not a working attack. Run it in an isolated environment dedicated to evaluating your own tooling.
Safety model
Every scenario is deliberately inert:
Injection / poisoning strings are realistic (so your detector has real signal to match), but the runtime behaviour is harmless: tools return canned text.
The only side effect a "successful" attack produces is appending a line to a local
sink.log— a stand-in for exfiltration that touches nothing sensitive and never leaves the machine.All referenced secrets are canaries (
~/.bad-mcp/canary_secret,CANARY-TOKEN-...). No real files are read; there is no network egress.
Related MCP server: MEOK MCP Test MCP
Attack scenarios
name | pattern |
| clean tools — use it to measure false positives |
| tool is benign at approval time, then its description/schema silently mutates and a |
| tool descriptions carry hidden instructions: imperative overrides, HTML-comment smuggling, invisible Unicode-Tag smuggling, fake "SYSTEM:" directives |
| duplicate tool names in one manifest, plus a tool impersonating a trusted server's tool and redirecting it |
Install
Requires Python 3.10+ (the mcp SDK's minimum).
python3.10 -m venv venv && . venv/bin/activate
pip install -e .This installs the repo as the bad_mcp package (see pyproject.toml), which
is what makes python -m bad_mcp.cli below work.
Use
List scenarios:
python -m bad_mcp.cli listProduce an event log offline (no MCP client needed — best for iterating on a static detector):
python -m bad_mcp.cli simulate --out events.jsonl
python detector.py events.jsonlRun a live remote server over Streamable HTTP and point your detector's "MCP server URL" input at it (this is the realistic setup — an unvetted remote MCP server):
python -m bad_mcp.cli serve-http --port 8971 --out events.jsonl
# detector connects to: http://127.0.0.1:8971/mcpThe MCP endpoint is mounted at /mcp by default (--path to change). Your
detector connects like any MCP client and will observe the rug-pull change
mid-session, the poisoned descriptions, and the shadowed/duplicate tools — while
the harness records the ground truth to events.jsonl for scoring.
Remote access from another host is off by default (DNS-rebinding protection). To allow it in an isolated test network:
# bind publicly and permit a specific Host header
python -m bad_mcp.cli serve-http --host 0.0.0.0 --port 8971 \
--allow-host lab-box:8971 --out events.jsonl
# or, for a throwaway isolated net, skip the Host check entirely
python -m bad_mcp.cli serve-http --host 0.0.0.0 \
--insecure-disable-host-check --out events.jsonlThere is also a local stdio mode for driving with a stdio MCP client:
python -m bad_mcp.cli serve --scenarios rug_pull,tool_shadowing --out events.jsonlPick scenarios and the rug-pull trigger:
python -m bad_mcp.cli simulate \
--scenarios benign_control,rug_pull --trigger after_call --out events.jsonlEvent log (JSONL)
One JSON object per line. Two categories share the stream:
evidence (
ground_truth: false) — what a detector is allowed to see:manifest_snapshot— the tool list served on eachlist_tools, with per-tooldesc_sha/input_schema_sha(diff these across snapshots to catch rug-pulls).tool_call— a tool invocation with its arguments.notification— e.g.tools/list_changed.
ground truth (
ground_truth: true) — labels for scoring:rug_pull_activated,poisoned_tool_present,duplicate_tool_name,shadow_impersonation,exfil_simulated.
detector.py is a baseline detector: it raises findings from evidence
only, then scores itself against the ground-truth labels. Replace it with your
own tool and reuse the scoring harness.
Note:
tool_shadowingandrug_pullinteract by design. Two tools sharing a name make a naive "hash changed since last snapshot" heuristic report a spurious rug-pull on that name — a useful reminder to key rug-pull detection on stable tool identity, not name alone.
Extending
Add a subclass of Scenario in scenarios.py and register it in
REGISTRY:
class MyScenario(Scenario):
name = "my_attack"
def tools(self, state):
return [types.Tool(name="...", description="...", inputSchema={...})]
async def on_call(self, name, arguments, ctx, state):
return [types.TextContent(type="text", text="...")]Emit a ground-truth label whenever your attack actually fires (see
self._label_once(...) and self.events.emit(..., ground_truth=True)) so it
shows up in scoring.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA mock MCP server for testing MCP client implementations and development workflows. Supports tools, prompts, and resources across multiple transport protocols (stdio, HTTP, SSE).Last updated21MIT
- Alicense-qualityBmaintenanceA test harness for MCP servers that validates server JSON, tool schemas, performs golden file diffing and schema drift detection, and generates signed test reports with Shields.io badges.Last updatedMIT
- AlicenseAqualityCmaintenanceAn intentionally vulnerable MCP server for security training, enabling users to practice attacking and defending AI agents through realistic scenarios.Last updated2868MIT
- Flicense-qualityCmaintenanceA deliberately insecure MCP server designed as a pentest lab to demonstrate common vulnerabilities in MCP deployments.Last updated
Related MCP Connectors
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
MEOK MCP Test MCP — golden-file + schema-drift + tool-failure tests for any MCP server. Drop-in
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ytkoka/bad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server