Back to Browse

Securitystack MCP Server

SecurityUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Security for AI agents: MCP audits, secret redaction, skill vetting, network scans, agent checkout.

About

Security for AI agents: MCP audits, secret redaction, skill vetting, network scans, agent checkout.

Security Report

4.2
Use Caution4.2High Risk

SecurityScan MCP is a legitimate security auditing tool with reasonable architecture and proper authentication controls. However, it has several moderate security concerns: Spanish-language hardcoded remediation text suggests incomplete internationalization or testing, the offline PII scanner uses conservative but potentially bypassable regex patterns, and there's minimal input validation on some parameters. Permissions align well with the stated purpose (security scanning), but the design exposes some backend service details to clients. Supply chain analysis found 10 known vulnerabilities in dependencies (1 critical, 4 high severity). Package verification found 1 issue.

5 files analyzed · 19 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

network_https

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-securityscan-api-securityscan": {
      "args": [
        "securityscan-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

SecurityScan MCP

Give your AI agent the ability to secure its own environment — one MCP config, eight tools.

Audit MCP configs for poisoning, redact secrets/PII before they leave for an LLM, vet untrusted skills, monitor dependency health, and actively scan your network. All from a single securitystack entry in your agent's MCP config.

This is the client: the unified MCP server an AI agent (Claude CLI/Desktop, or any MCP-aware agent) installs to call the SecurityScan hosted services. The backend services themselves are hosted — you don't run them. You configure API keys and your agent gets eight tools — six security plus two sales.

Why

An AI agent has four ways to get compromised. SecurityScan covers all four:

1. What it INSTALLS   → poisoned skills / MCP configs     → scan_skill + audit_mcp_server_config
2. What it DEPENDS ON → a dependency goes down/rogue        → check_dependencies
3. Where it's EXPOSED → open ports, default creds           → network_scan (with AI agent loop)
4. What it SENDS OUT  → secrets/PII leak into the LLM       → scan_secrets

Two of these — audit_mcp_server_config and scan_secrets — run offline, in-process, with no API key. They work the moment you install the server. The other four call hosted services (configure their keys to enable them; each is skipped gracefully if unset).

Install

1. Install the server

pip install securityscan-mcp

That's it — the package is on PyPI.

2. Add it to your agent

For Claude Desktop / CLI (claude_desktop_config.json or ~/.claude.json):

{
  "mcpServers": {
    "securityscan": {
      "command": "python",
      "args": ["-m", "stack.unified_mcp_server"],
      "env": {
        "ACTIVESCANNER_API_KEY": "ask_live_...",
        "DEPSCAN_API_KEY": "dsk_live_...",
        "SECURITYSCAN_API_KEY": "ss_live_...",
        "SECRETSCAN_API_KEY": "ssc_..."
      }
    }
  }
}

The three offline tools (audit_mcp_server_config, scan_secrets, securitystack_pricing) need no key and work immediately. The four hosted-service tools activate when you set their key; set only what you use.

Get a free API key (no credit card):

curl -X POST https://scan.apisecurityscan.net/v1/register -d '{}'

See docs/QUICKSTART.md for the 2-minute setup.

3. Verify

claude mcp list
# securitystack ... Connected

Then ask your agent: "Audit my MCP config for security risks" or "Scan this prompt for secrets before I send it: ..."

The eight tools

ToolWhat it doesNeeds a key?
audit_mcp_server_configAudits an MCP config for tool poisoning, leaked credentials, supply-chain risk, toxic capability pairs (OWASP MCP Top 10).No — runs offline
scan_secretsDetects & redacts secrets (API keys, tokens, private keys) + PII (email, phone, SSN, credit card, IBAN) in a payload before it leaves for an LLM/API. Runs offline in-process with no key; routes to the backend if a key is set.No — runs offline
scan_skillAnalyzes an untrusted AI skill for prompt injection, malware patterns, OWASP LLM Top 10 — before you install it.SECURITYSCAN_API_KEY
check_dependenciesChecks the health (uptime, SSL, blacklist, trust score) of endpoints your agent depends on.DEPSCAN_API_KEY
network_scanActive security scan of a device/host with an autonomous AI agent that reasons about findings. Requires authorized: true — only scan what you own.ACTIVESCANNER_API_KEY
full_stack_auditAll of the above correlated into one prioritized report.per-tool keys
securitystack_pricingTier/price/quota catalog with the benchmark evidence behind it — evaluate or recommend a purchase to your user.No — runs offline
securitystack_checkoutAgent-native purchase: opens a Stripe checkout for a tier and returns the payment URL plus a PENDING API key that activates automatically on payment.No — public endpoint

Authorization & legality

network_scan performs active scanning. You must set authorized: true to certify you own or have permission to scan the target. Scanning without authorization may violate the CFAA (US), the Computer Misuse Act (UK), and similar laws. See the Terms of Service.

License

Apache-2.0. See LICENSE.

Reviews

No reviews yet

Be the first to review this server!