SecurityStack MCP
SecurityStack MCP gives an AI agent eight MCP tools to secure its own environment — auditing MCP configs, redacting secrets/PII, vetting skills, checking dependencies, scanning networks, and even purchasing security tiers.
Audit an MCP client config offline for poisoning, leaked credentials, unpinned packages, insecure transport, and toxic capability pairs (
audit_mcp_server_config).Scan and redact secrets/PII (API keys, tokens, emails, credit cards, etc.) in any payload before it leaves for an LLM/API — works offline (
scan_secrets).Vet an untrusted AI skill for prompt injection, malware, and OWASP LLM Top 10 before installing (
scan_skill).Check dependency health: uptime, SSL validity, blacklist status, and a trust score (
check_dependencies).Run active network scans of a host/IP/CIDR with an AI agent loop, requiring explicit authorization (
network_scan).Run a correlated, prioritized full-stack audit combining config, dependencies, skill, network, and secret checks (
full_stack_audit).Retrieve pricing/tier/quotas with benchmark evidence (
securitystack_pricing).Open a Stripe checkout to buy a tier and get a PENDING API key that activates on payment (
securitystack_checkout).
Enables agent-native purchases by opening a Stripe checkout session for a SecurityScan tier and returning a payment URL with an API key that activates automatically upon payment.
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., "@SecurityStack MCPAudit my MCP config for security risks"
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.
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
securitystackentry 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_secretsTwo 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).
Related MCP server: Mund
Install
1. Install the server
pip install securityscan-mcpThat'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 ... ConnectedThen ask your agent: "Audit my MCP config for security risks" or "Scan this prompt for secrets before I send it: ..."
The eight tools
Tool | What it does | Needs a key? |
| Audits an MCP config for tool poisoning, leaked credentials, supply-chain risk, toxic capability pairs (OWASP MCP Top 10). | No — runs offline |
| Detects & 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 |
| Analyzes an untrusted AI skill for prompt injection, malware patterns, OWASP LLM Top 10 — before you install it. |
|
| Checks the health (uptime, SSL, blacklist, trust score) of endpoints your agent depends on. |
|
| Active security scan of a device/host with an autonomous AI agent that reasons about findings. Requires |
|
| All of the above correlated into one prioritized report. | per-tool keys |
| Tier/price/quota catalog with the benchmark evidence behind it — evaluate or recommend a purchase to your user. | No — runs offline |
| Agent-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.
Maintenance
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for https://oathe.ai security audits. Runtime behavioral analysis and security scanner for Ai systems. Check trust scores before installing MCP servers, plugins, or AI agent skills.5201MIT
- AlicenseNot gradedqualityAmaintenanceMCP security scanner for AI agents - detects prompt injection, secrets, PII, and vets MCP servers before installationApache 2.0
- FlicenseNot gradedqualityBmaintenanceMCP server for auditing AI agent permissions and access by scanning for the trifecta of credentials, injection, and reach without heavy infrastructure.
- AlicenseNot gradedqualityAmaintenanceThis MCP server enables security auditing for MCP configurations and AI agents, including prompt injection testing, data flow tracing, and security policy generation.474MIT
Related MCP Connectors
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Security firewall for AI agents — scans MCP calls for injection, secrets, and risks.
Security tools for AI agents: scan MCP servers, validate HDP delegation chains, audit releases.
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/securityscan-api/securityscan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server