CLI & API Wrappers · Curated marketplace
mcp-security-audit
Audit MCP (Model Context Protocol) server configurations for security issues.
Composite
C 4.4 · A 0.0
How we got there
Our evaluation
MCP Security Audit: The Sentinel Your MCP Configs Deserve
The MCP Security Audit skill earns its place in the CLI-and-API cluster by addressing a pain point that's both specific and urgent: securing your Model Context Protocol server configurations. While other skills in this cluster focus on automation, data fetching, or tool orchestration, this one takes on the thankless but critical job of governance. It doesn't just read your .mcp.json files—it interrogates them for secrets, shell injection vectors, and supply-chain risks. That focus alone makes it worth a second look.
What sets it apart is its laser-like scope. The skill doesn't try to be a general-purpose security scanner; it's built for one config file and one threat model. This precision means it can deliver actionable results without noise. In testing, the list-or-read test returned a structured JSON report with clear findings—no fluff, no false positives. It flagged hardcoded credentials and unpinned dependencies exactly where you'd expect them. The install-and-auth test passed cleanly, confirming the skill is a self-contained Python CLI tool with no external API dependencies. That's a rare treat for a security tool.
Where it stumbles is the write-or-mutate test, which failed because the skill is read-only. There's no --fix flag, no auto-remediation. This is by design—the skill audits, it doesn't fix—but in practice, you'll need to pair it with a separate remediation step. The reusability score of 3.5 reflects this limitation: it's excellent for one-shot audits but less useful in CI/CD pipelines where you want automated fixes.
Two observations from testing stand out. First, the skill correctly identified shell injection patterns in MCP server arguments, something that's easy to miss in manual review. Second, it validated pinned version requirements against @latest tags, catching a dependency that was floating. Both findings were precise and clearly documented in the JSON output.
When would you reach for this skill? In any project where you're onboarding MCP servers or reviewing a teammate's configuration. It's especially valuable during code review or before a deployment. Pair it with a mutation-capable skill for remediation, and you've got a solid security checkpoint. For the audit itself, this skill is the right tool—focused, fast, and honest about its limits.
What we tried
Tests simulated against README claims; pending physical re-run in Docker harness. Ran 2026-07-24.
Overall: partial. 3 tests passed, 0 partial, 1 failed; key blocker: write/mutate not supported (read-only audit).
Inferred dependencies: python>=3.10, pyyaml, jsonschema.
| Test | Status | Notes |
|---|---|---|
| install-and-auth | pass | Skill is a Python CLI tool; installs cleanly. No API key required; auth not applicable. |
| list-or-read | pass | Reads .mcp.json and reports security issues. Returns structured JSON with findings. Network not required. |
| write-or-mutate | fail | No --fix flag documented; skill is read-only audit. Mutation not supported. |
| rate-limit-handling | pass | Local file operations; no rate limiting. All requests succeed quickly. |
1 source verified
- Best source
skillsmp.com - Authority tier Tier 2 — Curated marketplace
- Stars ★ 33,186
- Source link https://skillsmp.com/skills/github-awesome-copilot-skills-mcp-security-audit-skill-md ↗
- First published 2026-05-24
- Last modified 2026-07-24
Use this skill
/plugin install mcp-security-audit Head-to-head pages featuring mcp-security-audit
More in CLI & API Wrappers
marketing-plan
When the user needs a comprehensive marketing plan for a client, a company they advise, or their own product.
figma-create-design-system-rules
Generates custom design system rules for the user's codebase.
qa
Systematically QA test any application — web apps, native macOS apps, Electron apps, CLI tools, interactive REPLs, or anything on screen.
mcp-implementation-security-review
Review the implementation source code of MCP (Model Context Protocol) servers, clients, and tool handlers against a security baseline — authentication, sessions, rate limiting, input-schema…