Skip to main content

Security scanner for Model Context Protocol (MCP) servers

Project description

mcp-scan

Security scanner for Model Context Protocol (MCP) servers.

status: early alpha python: 3.10+ license: MIT

mcp-scan is an open-source CLI that inspects MCP servers for known security issues. It connects to a server via stdio, fetches its tool/resource/prompt manifest, and runs a battery of checks against the metadata.

Early alpha. Currently ships 6 checks: 2 protocol-level (prompt injection markers, ANSI/control character smuggling) and 4 source-code AST checks (path traversal, shell injection, SSRF sinks, hardcoded secrets). 19 more are planned — see docs/checks.md for the full roadmap. Only stdio transport is implemented; HTTP/SSE is planned.

Built by Velox Labs — an AI security and platform engineering studio.


What it catches today

Protocol-level checks (run against any MCP server, no source access needed):

Check Severity What it detects
MCPA-001 Critical Prompt-injection markers in tool descriptions (imperative verbs, <system> tags, exfiltration phrases)
MCPA-002 High ANSI escape sequences, C0 control chars, and zero-width characters hiding payloads in tool descriptions

Source-code AST checks (require --source <path> pointing at the server's Python source):

Check Severity What it detects
MCPA-010 Critical Path traversal in file handlers — open()/read_text() without is_relative_to() containment (resolve() alone is not sufficient)
MCPA-012 Critical Shell injection — subprocess with shell=True, especially with f-string/format commands
MCPA-060 High SSRF sinks — HTTP client calls (httpx, requests, urllib) with variable URLs and no host validation guard
MCPA-070 High Hardcoded secrets — API keys (sk-, ghp_, AKIA, xoxb-, etc.) and high-entropy strings in secret-named variables

These catch the tool poisoning attacks published by Trail of Bits and Invariant Labs (2025), the EscapeRoute filesystem sandbox bypass (CVE-2025-53109/53110), and the Anthropic Git MCP argument injection (CVE-2025-68144).

See docs/checks.md for the 19 additional checks planned for v0.1 (dependency CVEs, OAuth conformance, SSRF, exfiltration channels, and more).

Install

pip install mcp-scan

Requires Python 3.10+.

Quick start

# Scan a local stdio MCP server
mcp-scan scan --stdio "python3 -m my_mcp_server"

# Output JSON report
mcp-scan scan --stdio "python3 -m my_mcp_server" --format json --output report.json

# Only run critical-severity checks
mcp-scan scan --stdio "python3 -m my_mcp_server" --severity critical

# List registered checks
mcp-scan list-checks

Try it on the vulnerable reference server

This repo ships with vulnerable-mcp — a deliberately broken MCP server with 5 planted vulnerabilities. The scanner catches all 5 (7 findings total).

# Protocol-level checks only (catches vuln #1)
mcp-scan scan --stdio "python3 -m vulnerable_mcp.server"

# Protocol + source-code checks (catches all 5 vulns)
mcp-scan scan --stdio "python3 -m vulnerable_mcp.server" --source ./vulnerable_mcp

Fail-closed design

A security scanner that silently passes when something goes wrong is worse than no scanner. mcp-scan follows fail-closed principles:

  • Introspection failures are surfaced as critical findings, not swallowed. If the server can't respond to tools/list, you see a CRITICAL finding, not an empty clean report.
  • Check execution errors cause non-zero exit, even if no findings were produced. In CI, a broken scan is a failed scan.
  • All MCP RPC calls have timeouts (default 30s, configurable via --timeout). A hanging server can't hang the scanner.

Roadmap

  • Current — 6 checks (MCPA-001, MCPA-002, MCPA-010, MCPA-012, MCPA-060, MCPA-070), stdio transport, source-code AST scanning (--source), terminal/JSON/markdown reports, fail-closed error handling, capability-aware introspection.
  • v0.1 — 25 checks across tool-schema, resource-access, supply-chain, transport, OAuth, SSRF, exfiltration, and configuration categories. See docs/checks.md.
  • v0.3 — OAuth 2.1 DCR flow auditing, multi-server config analysis, fuzz mode.

License

MIT. See LICENSE.

Security

Found a security issue in mcp-scan itself? Email security@veloxlabs.dev — please do not file a public issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

velox_mcp_scan-0.1.0.tar.gz (36.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

velox_mcp_scan-0.1.0-py3-none-any.whl (28.4 kB view details)

Uploaded Python 3

File details

Details for the file velox_mcp_scan-0.1.0.tar.gz.

File metadata

  • Download URL: velox_mcp_scan-0.1.0.tar.gz
  • Upload date:
  • Size: 36.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for velox_mcp_scan-0.1.0.tar.gz
Algorithm Hash digest
SHA256 73c67d195aaf0dbf92c9c5f56c460bd1c272275352dd80b0f0f75c6f897f4f24
MD5 3146b8cbe3203a867804eb74753f8439
BLAKE2b-256 0561d84db744cb527cb19a5eaa98f722a488a8d08b1a986059d1ffae7bcd2d3f

See more details on using hashes here.

File details

Details for the file velox_mcp_scan-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: velox_mcp_scan-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 28.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for velox_mcp_scan-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0987050f3269fd6fd2339b1bd4c18ec8822413ba2b94e6806f5cb4d199fe6309
MD5 dd7372fcb992019c8fc7d9913614b289
BLAKE2b-256 c9618fcbc984f41b9c12bb4907ef575d5935afadc3c0a8e38f21c172c7543047

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page