Enterprise security scanner for Model Context Protocol (MCP) servers
Project description
nyuwaymcpscanner
Enterprise-grade security scanner for Model Context Protocol (MCP) servers.
Catches hardcoded secrets, tool-poisoning instructions, supply-chain attacks, shell-execution backdoors, and data-exfiltration endpoints before they reach production - entirely offline, with no data leaving your machine.
pip install nyuwaymcpscanner
nyuwaymcpscanner scan ./my-mcp-server
Why nyuwaymcpscanner?
MCP servers run with broad access to files, shells, and network sockets on behalf of AI agents. A compromised or malicious MCP server can:
- Exfiltrate secrets and conversation history to attacker-controlled webhooks
- Inject hidden instructions into tool descriptions to hijack agent behaviour ("tool poisoning")
- Execute arbitrary shell commands through unsanitized tool inputs
- Pull in typosquatted dependencies that install malware at install time
nyuwaymcpscanner gives you a repeatable, CI-friendly audit layer that catches these threats statically - no runtime required.
Quick start
# Install
pip install nyuwaymcpscanner
# Scan a local server directory
nyuwaymcpscanner scan ./my-mcp-server
# Scan a package from npm or PyPI
nyuwaymcpscanner scan npm:@modelcontextprotocol/server-github
nyuwaymcpscanner scan pypi:weather-mcp
# Scan a GitHub repository
nyuwaymcpscanner scan github:owner/repo
# Scan a claude_desktop_config.json (all declared servers at once)
nyuwaymcpscanner scan ~/Library/Application\ Support/Claude/claude_desktop_config.json --config
# CI: fail the build when HIGH or above findings are found
nyuwaymcpscanner scan ./server --offline --static-only --fail-on high
Sample output
Baseline Scan - ./my-mcp-server
+--------------+-------------------------------------------------------------------+
| Risk Score | 85 / 100 |
| Verdict | HIGH |
| Files scanned| 12 |
+--------------+-------------------------------------------------------------------+
Findings
+----+--------------------+----------+---------------------------------------------+
| # | Type | Severity | Evidence |
+----+--------------------+----------+---------------------------------------------+
| 1 | hardcoded_secret | HIGH | AWS_ACCESS_KEY_ID = "AKIA..." config.py:1 |
| 2 | yara_match | HIGH | os.system call in tool logic tool.py:4 |
+----+--------------------+----------+---------------------------------------------+
Scan modes
Baseline scan (default, fully offline)
The Baseline scan runs entirely on your machine. It makes zero external network calls - no telemetry, no cloud APIs, no data leaves your environment.
Three static layers run in sequence:
| Layer | What it catches |
|---|---|
| Secrets | Hardcoded AWS/GCP/Azure keys, OpenAI/Anthropic tokens, private keys, JWT secrets, generic passwords |
| YARA rules | Tool-poisoning instructions, external logging endpoints, shell execution, plaintext passwords, internal IP leakage |
| Supply chain | Typosquatted dependency names (edit-distance 1 from popular packages); CVE lookup via OSV.dev (skipped in --offline mode) |
A fourth local LLM layer runs semantic analysis of MCP tool manifests using a locally-hosted Ollama model (skipped with --static-only).
# Pure static, no Ollama required - suitable for CI without GPU
nyuwaymcpscanner scan ./server --static-only --offline
Deep Scan (invite only)
Deep Scan is a Nyuway-hosted analysis tier that performs dynamic sandbox execution, cross-server correlation, and adversarial probing. It is currently available by invite.
nyuwaymcpscanner scan ./server --deep --token YOUR_TOKEN
Join the waitlist: https://nyuway.ai/mcp-scanner/access
CLI reference
nyuwaymcpscanner scan TARGET [OPTIONS]
TARGET
./path/to/server Local directory
github:owner/repo GitHub repository (optionally @ref)
npm:package@version npm package
pypi:package@version PyPI package
/path/to/config.json MCP host config file (requires --config)
/path/to/list.txt Newline-delimited list of targets (requires --batch)
Options
--offline Disable all outbound network calls (OSV.dev CVE lookup skipped)
--static-only Skip local LLM layer; run secrets + YARA + supply chain only
--output FORMAT Output format: summary (default), json, sarif
--fail-on LEVEL Exit non-zero when verdict >= LEVEL (low/medium/high/critical)
--config Treat TARGET as an MCP host config file; scan all declared servers
--batch Treat TARGET as a newline-delimited list of server paths
--deep Run Deep Scan (invite only; requires --token)
--token TOKEN Deep Scan invite token
--model MODEL Ollama model for local LLM layer (default: llama3)
nyuwaymcpscanner setup
Download and verify the local Ollama model for LLM-assisted scanning.
Output formats
Summary (default)
Rich terminal table with colour-coded severity, suitable for interactive use.
JSON (--output json)
Machine-readable report. Stable schema for scripting and dashboards.
{
"tool": "nyuwaymcpscanner",
"version": "0.1.0",
"target": "./server",
"scanned_at": "2025-01-15T10:30:00Z",
"risk_score": 85,
"verdict": "HIGH",
"findings": [
{
"type": "hardcoded_secret",
"severity": "high",
"weight": 30,
"file": "config.py",
"line": 1,
"pattern": "AWS Access Key ID",
"evidence": "AWS_ACCESS_KEY_ID = \"AKIA...\"",
"source": "secrets_scanner"
}
]
}
SARIF (--output sarif)
SARIF 2.1.0 format for GitHub Advanced Security, VS Code Problems panel, and any SARIF-aware CI tool.
# .github/workflows/mcp-scan.yml
- name: Scan MCP server
run: |
pip install nyuwaymcpscanner
nyuwaymcpscanner scan ./server --offline --static-only --output sarif > results.sarif
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
Scanning MCP host configs
Point nyuwaymcpscanner at your MCP host config to audit every server declared in it:
# Claude Desktop (macOS)
nyuwaymcpscanner scan \
~/Library/Application\ Support/Claude/claude_desktop_config.json \
--config --offline
# Cursor / Windsurf / VS Code
nyuwaymcpscanner scan ~/.cursor/mcp.json --config --offline
Remote SSE/HTTP endpoints are reported as skipped (deep remote scanning is roadmapped for v1.1).
Local LLM setup
The LLM layer uses Ollama running locally. Run setup once:
# Install Ollama from https://ollama.ai, then:
nyuwaymcpscanner setup
This pulls the default model (llama3) and verifies connectivity. The LLM layer only runs when an mcp.json manifest is present in the scanned tree; it is silently skipped otherwise.
Verdicts and scoring
| Verdict | Score range | Meaning |
|---|---|---|
| PASS | 0 | No findings |
| LOW | 1-24 | Informational; review but not urgent |
| MEDIUM | 25-49 | Should be fixed before production |
| HIGH | 50-79 | Block deployment |
| CRITICAL | 80-100 | Immediate action required |
Each finding carries a weight (5-35). The final score is max(weight_sum, severity_floor) capped at 100.
What nyuwaymcpscanner catches
| Finding type | Severity | Description |
|---|---|---|
hardcoded_secret |
HIGH | AWS/GCP/Azure credentials, API keys, private keys, JWT secrets |
yara_match |
CRITICAL-LOW | Tool-poisoning instructions, exfil endpoints, shell exec, passwords, internal IPs |
typosquatting_risk |
MEDIUM | Dependency name 1 edit-distance from a popular package |
dependency_cve |
HIGH | Known CVE in a pinned dependency (requires network; skipped with --offline) |
tool_poisoning |
CRITICAL | LLM-detected hidden instruction in tool description |
Requirements
- Python 3.11+
- Ollama (optional; only needed for LLM layer)
License
Apache 2.0. See LICENSE.
Links
- Website: https://nyuway.ai
- Deep Scan waitlist: https://nyuway.ai/mcp-scanner/access
- Issues: https://github.com/Nyuway-Cybersecurity/nyuwaymcpscanner/issues
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nyuwaymcpscanner-0.1.0.tar.gz.
File metadata
- Download URL: nyuwaymcpscanner-0.1.0.tar.gz
- Upload date:
- Size: 48.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2735521412c207c0b8ebeb09705555435ceba93d7b3976e9f3bcc1ca36a5912
|
|
| MD5 |
fb047301830fe9fda56b09551f9c5302
|
|
| BLAKE2b-256 |
96ef45ec38171261e56015f4beb8e9336e38062fb33df8b81897d13b4154de9f
|
Provenance
The following attestation bundles were made for nyuwaymcpscanner-0.1.0.tar.gz:
Publisher:
release.yml on Nyuway-Cybersecurity/nyuwaymcpscanner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nyuwaymcpscanner-0.1.0.tar.gz -
Subject digest:
f2735521412c207c0b8ebeb09705555435ceba93d7b3976e9f3bcc1ca36a5912 - Sigstore transparency entry: 1599785833
- Sigstore integration time:
-
Permalink:
Nyuway-Cybersecurity/nyuwaymcpscanner@0f12ad44041b8cb0d68218a16fe56751ef87954c -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Nyuway-Cybersecurity
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f12ad44041b8cb0d68218a16fe56751ef87954c -
Trigger Event:
push
-
Statement type:
File details
Details for the file nyuwaymcpscanner-0.1.0-py3-none-any.whl.
File metadata
- Download URL: nyuwaymcpscanner-0.1.0-py3-none-any.whl
- Upload date:
- Size: 37.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af3e44ea0a2c68ad7be51775917bd778cce22f1bfa1ddd7fa33691ca8d63b642
|
|
| MD5 |
f32c71a171a442a341535bf6c46c8b60
|
|
| BLAKE2b-256 |
206c7ac215895dfb62bbc8ead98f633c279e90c94e2ac9c45081cf8ed9ed9819
|
Provenance
The following attestation bundles were made for nyuwaymcpscanner-0.1.0-py3-none-any.whl:
Publisher:
release.yml on Nyuway-Cybersecurity/nyuwaymcpscanner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nyuwaymcpscanner-0.1.0-py3-none-any.whl -
Subject digest:
af3e44ea0a2c68ad7be51775917bd778cce22f1bfa1ddd7fa33691ca8d63b642 - Sigstore transparency entry: 1599786092
- Sigstore integration time:
-
Permalink:
Nyuway-Cybersecurity/nyuwaymcpscanner@0f12ad44041b8cb0d68218a16fe56751ef87954c -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Nyuway-Cybersecurity
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f12ad44041b8cb0d68218a16fe56751ef87954c -
Trigger Event:
push
-
Statement type: