mcp-control-plane: Skill for Claude Code

.agents/skills/mcp-security-audit/SKILL.md

mcp-security-audit is a skill for Claude Code, Codex from albertik322-sudo/mcp-control-plane. It costs 153 tokens per session (2,381 once invoked), scanned A, a copy of mcp-security-audit, MIT.

A security review checklist for MCP server configuration files. MCP (Model Context Protocol) lets an AI agent connect to external tools and services.

In plain words
What is it for?
Reviewing .mcp.json files, checking new MCP servers, auditing a monorepo or plugin marketplace, and checking configuration changes before committing them.
Why use it?
It helps find exposed credentials, unsafe shell commands, untrusted servers, and software versions that are not pinned before they cause problems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is albertik322-sudo/mcp-control-plane's own configuration. It tells Claude Code and Codex how to work on mcp-control-plane itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-control-plane configures →

Reuse

Borrowing it

Nothing to install: this file belongs to albertik322-sudo/mcp-control-plane. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/albertik322-sudo/mcp-control-plane/main/.agents/skills/mcp-security-audit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/albertik322-sudo/mcp-control-plane

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-security-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit/github.svg)](https://agentmods.dev/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit)
Your own site
<a href="https://agentmods.dev/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit"><img src="https://agentmods.dev/badge/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-security-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit"><img src="https://agentmods.dev/badge/skills/albertik322-sudo/mcp-control-plane/mcp-security-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,381 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00153 $0.02381
Opus 5 $0.00077 $0.01190
Sonnet 5 $0.00031 $0.00476
Haiku 4.5 $0.00015 $0.00238

Measured 9d ago against content hash 8ae232662a1f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mcp-security-audit scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

(r'curl\s+.*\|\s*(ba)?sh', "curl pipe to shell"),
Origin

This is a copy

86% identical to mcp-security-audit — 27 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/mcp-security-audit/SKILL.md · 284 lines

How it starts

The opening of the file, as written. The whole thing — 284 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP Security Audit

Audit MCP server configurations for security issues — secrets exposure, shell injection, unpinned dependencies, and unapproved servers.

Overview

MCP servers give agents direct tool access to external systems. A misconfigured .mcp.json can expose credentials, allow shell injection, or connect to untrusted servers. This skill catches those issues before they reach production.

.mcp.json → Parse Servers → Check Each Server:
  1. Secrets in args/env?
  2. Shell injection patterns?
  3. Unpinned versions (@latest)?
  4. Dangerous commands (eval, bash -c)?
  5. Server on approved list?
→ Generate Report

When to Use

  • Reviewing any .mcp.json file in a project
  • Onboarding a new MCP server to a project
  • Auditing all MCP servers in a monorepo or plugin marketplace
  • Pre-commit checks for MCP configuration changes
  • Security review of agent tool configurations

Audit Check 1: Hardcoded Secrets

Scan MCP server args and env values for hardcoded credentials.

import json
import re
from pathlib import Path

SECRET_PATTERNS = [
    (r'(?i)(api[_-]?key|token|secret|password|credential)\s*[:=]\s*["\'][^"\']{8,}', "Hardcoded secret"),
    (r'(?i)Bearer\s+[A-Za-z0-9\-._~+/]+=*', "Hardcoded bearer token"),
    (r'(?i)(ghp_|gho_|ghu_|ghs_|ghr_)[A-Za-z0-9]{30,}', "GitHub token"),
    (r'sk-[A-Za-z0-9]{20,}', "OpenAI API key"),
    (r'AKIA[0-9A-Z]{16}', "AWS access key"),
    (r'-----BEGIN\s+(RSA\s+)?PRIVATE\s+KEY-----', "Private key"),
]

def check_secrets(mcp_config: dict) -> list[dict]:
    """Check for hardcoded secrets in MCP server configurations."""
    findings = []
    raw = json.dumps(mcp_config)
    for pattern, description in SECRET_PATTERNS:
        matches = re.findall(pattern, raw)
        if matches:
            findings.append({
                "severity": "CRITICAL",
                "check": "hardcoded-secret",
                "message": f"{description} found in MCP configuration",
                "evidence": f"Pattern matched: {pattern}",
                "fix": "Use environment variable references: ${ENV_VAR_NAME}"
            })
    return findings

Read the full file on GitHub · 284 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 284 lines · 153 tokens per session scan A 8ae232662a1f

Subscribe to this mod's changes

mcp-security-audit is a skill published in the GitHub repository albertik322-sudo/mcp-control-plane (2 stars, last pushed 7d ago), licensed MIT. It adds 153 tokens to every session and 2,381 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 86% identical to mcp-security-audit, differing in 27 lines, and is treated as a copy.

Related

Other skills, from other repositories

implementing-container-image-minimal-base-with-distroless

Reduce container attack surface by building application images on Google distroless base images that contain only the application runtime with no shell, package manager, or unnecessary OS utilities.

xalgorix/xalgorix · 45 tokens

skill-installation

A workflow for safely adding a local or third-party skill to AgentDock, a system for managing agent skills. It covers review, installation, configuration, activation, verification, updates, and rollback.

uvwt/agentdock · 43 tokens

skill-vetter-runtime

Review ClawHub or local Skill packages before installation, classify risk, and return a structured security report.

uvwt/agentdock · 26 tokens

performing-container-security-scanning-with-trivy

Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.

xalgorix/xalgorix · 48 tokens

hardening-docker-daemon-configuration

Harden the Docker daemon by configuring daemon.json with user namespace remapping, TLS authentication, rootless mode, and CIS benchmark controls.

xalgorix/xalgorix · 36 tokens

kastell-ops

Kastell CLI patterns, architecture, anti-patterns, and decision trees. Use automatically when working in Kastell codebase or when asked about Kastell server infrastructure, security audit, hardening, lock, provision, or provider management.

kastelldev/kastell · 53 tokens