MCP Sentinel
Build-time security scanning for MCP servers.
AI agents invoke tools exposed by MCP servers, and a single unsafe tool can leak credentials, run arbitrary commands, or hijack the agent. MCP Sentinel catches those holes before you ship — it scans an MCP server and reports the security findings, each mapped to a known threat class.
It works in three layers: deterministic static rules find candidate issues, GPT-5.6 reviews each one in context to cut false positives and order and parameterize the probe plan, and a Docker-isolated sandbox runs the four probes to confirm exploitable or unsafe runtime behavior. Every finding maps to the OWASP Agentic Top 10 (the industry threat list for AI agents) and renders as console, JSON, or SARIF — the standard format GitHub reads for its security tab.
Want the overview before running anything? Jump to What it checks and the Architecture diagram.
Try Sentinel in three minutes
No source checkout or OpenAI API key is required. Install from PyPI, then run the bundled GPT replay with real Docker probes.
1. Install Sentinel
Use Python 3.10, 3.11, 3.12, or 3.13 and install the exact release with pipx:
pipx install portunusmcp-sentinel==1.2.0
Or use uv:
uv tool install portunusmcp-sentinel==1.2.0
2. Check Docker
Start Docker Engine on Linux or Docker Desktop on macOS/Windows. Docker Desktop on Windows must use Linux containers.
docker info
docker buildx version
The first run may download Docker images and fixture dependencies through Sentinel's restricted build network. The scanned server has no runtime network access.
3. Run the demo
macOS or Linux:
sentinel --version
sentinel demo --replay-review --verbose
Windows PowerShell:
sentinel --version
sentinel demo --replay-review --verbose
The demo should exit 0 with Status: COMPLETE, evaluate all seven static and
four dynamic rules, and report SENT-001 through SENT-011. It writes
validated reports to:
sentinel-demo-results/report.json
sentinel-demo-results/report.sarif
Validate the SARIF independently on macOS or Linux:
python -m sentinel.report.validate_sarif sentinel-demo-results/report.sarif
On Windows PowerShell:
python -m sentinel.report.validate_sarif sentinel-demo-results\report.sarif
The validator produces no output when the report is valid and exits 0. Replay
is prominently disclosed and makes no model call; checked responses captured
from GPT-5.6 still pass through the production parser, evidence and probe-plan
validators, all four real Docker probes, merge logic, and report validation.
See the accepted live
SENT-010 GitHub code-scanning alert
and the complete Action evidence.
Scan your own server
From the root of a local Python MCP server:
sentinel init
# Review sentinel.permissions.yaml and grant only required scopes.
sentinel scan .
sentinel init statically detects one guarded FastMCP or Server entry point,
either a root requirements.txt or PEP 621 project.dependencies, the supported
mcp or fastmcp package, and repository-wide tool declarations. It never
imports or executes target code. Generated permissions are deny-all until you
review them. Existing generated files are preserved unless you pass --force;
even then, symbolic links and other non-regular destinations are refused.
For an official TypeScript MCP SDK v1 or server v2 repository, onboarding writes
only sentinel.permissions.yaml and preserves every target file:
sentinel init
sentinel scan . --static-only
TypeScript support covers .ts, .mts, and .cts. JavaScript, TSX,
declarations, workspaces, imported handlers/schemas, cross-file dataflow, and
Node dynamic probing remain out of scope. Sentinel never runs Node, package
scripts, or dependency installation during TypeScript analysis.
Choose the analysis tier that matches your environment:
| Tier | Command | Prerequisites |
|---|---|---|
| Rules-only degraded | sentinel scan . --static-only --allow-degraded |
No Docker or paid GPT access |
| Static plus GPT | sentinel scan . --static-only |
OPENAI_API_KEY; no Docker |
| Full dynamic proof | sentinel scan . |
OPENAI_API_KEY and Docker |
If a target has deterministic candidates but no API key, Sentinel explains how
to set OPENAI_API_KEY or continue explicitly with --allow-degraded. Degraded
candidates remain visible and count toward --fail-on.
Architecture
flowchart LR
A[Untrusted MCP repository] --> B[AST + Semgrep rules]
B --> C[Canonical candidates]
C --> D[GPT-5.6 semantic review]
D --> E[Constrained four-probe plan]
E --> F[Docker sandbox]
F --> G[Reviewed dynamic evidence]
D --> H[Deduplication + provenance merge]
G --> H
H --> I[Console]
H --> J[JSON 1.4.0]
H --> K[SARIF 2.1.0]
K --> L[GitHub code scanning]
Static analysis never imports or executes target code. TypeScript analysis is static-only. Dynamic analysis runs only local Python MCP targets in fresh containers with read-only source, restricted build egress, no runtime network, resource limits, and forced cleanup. GPT can order and bind four permanent inert templates; it cannot emit executable probe code or create rule-less findings.
What it checks
Each rule maps to a category in the OWASP Agentic Top 10; the ASI0x:2026 codes
are that list's threat identifiers (e.g. ASI03 is Identity & Privilege Abuse).
| Rule | Detection | OWASP | Impact |
|---|---|---|---|
| SENT-001 | Overly broad tool permission scope | ASI03:2026 | High |
| SENT-002 | Tool input reaches unsafe execution | ASI05:2026 | Critical |
| SENT-003 | Missing tool input validation | ASI02:2026 | Medium |
| SENT-004 | Unsanitized tool content enters a prompt | ASI01:2026 | High |
| SENT-005 | Hardcoded credential | ASI03:2026 | Critical |
| SENT-006 | Missing or ineffective route authentication | ASI03:2026 | High |
| SENT-007 | Unverified tool manifest | ASI04:2026 | Medium |
| SENT-008 | Out-of-scope tool execution | ASI02:2026 | Critical |
| SENT-009 | Oversized argument accepted | ASI05:2026 | Medium |
| SENT-010 | Injection payload executed | ASI05:2026 | Critical |
| SENT-011 | Malformed schema input processed | ASI02:2026 | Low |
Published SENT-xxx rule IDs are compatibility contracts. Existing IDs are
never renumbered or reused for a different detection; changed meanings receive
new IDs.
See the rule catalog for boundaries, false-positive risks, evidence, and remediation.
Human, Codex, and GPT contribution
The human owner defined product scope, architecture, trust boundaries, threat model, phase gates, and release decisions.
How Codex was used
Codex was the implementation partner for the entire build. The working pattern was design-first: before any implementation, a long Codex session worked through scope and architecture — MVP versus deferred features, how findings map to OWASP categories, the allowed state transitions for a finding, and whether semantic review should be optional (it should not; a flag would have made it decorative). That session is the architectural backbone the rest of the project was built against.
From there Codex built the static rule engine and Semgrep adapter, the Docker sandbox and probe harness, the reporting pipeline, the SARIF validator, the cross-platform test matrix, artifact automation, and the documentation. It also did the debugging on the harder cross-platform problems — Semgrep output parsing and runtime-file isolation on Windows, and the two rounds of SARIF fixes needed before GitHub code scanning would render the reports correctly.
The repository ships an AGENTS.md that constrains how Codex works
in this codebase: ask rather than assume, no speculative complexity, no
unrelated edits, explicit success criteria. Design decisions stayed with the
human owner; Codex accelerated everything downstream of them.
How GPT-5.6 was used
GPT-5.6 is inside the shipped product, not just the build. It is load-bearing at scan time: it reads the server code, decides which static candidates are real findings, and orders and parameterizes the four probes the sandbox runs — turn it off and you get different results. It does not replace the deterministic detectors or the Docker boundary.
The constraints are the design: strict Structured Outputs against a versioned
schema, store: false, redacted and capped context, and host-validated source
ranges, so the model cannot cite a line that does not exist, invent a finding
outside the rule set, or emit executable probe code. See
GPT-5.6 behavior and disclosure for the full
runtime contract, and artifacts/gpt-ablation.json for a measured comparison of
rules-only, GPT-reviewed, and dynamically confirmed outcomes.
Codex session record
Primary Codex /feedback thread for core implementation:
019f70e6-a5fb-7f13-8eae-bca041fc37ad.
Supporting implementation threads:
019f7469-e3ed-75a0-9906-7059299b1484019f741f-cf91-7000-b12c-e9aa2a50ff03019f77a1-f2f0-7ab2-9a5d-e72fa1ebc40e
The Phase 5 /feedback record was submitted from the primary thread above.
Requirements and installation
Sentinel supports Python 3.10–3.13 on Linux, macOS, and Windows. Dynamically scanned Python targets remain limited to Python 3.10–3.12. Full scans and demos require Docker Engine or Docker Desktop with Buildx. The GitHub Action runs on Ubuntu.
Source checkout
uv sync --extra dev
uv run sentinel scan ./path/to/server
The pip-compatible development path is:
pip install -e ".[dev]"
Install the exact release from PyPI with pipx:
pipx install portunusmcp-sentinel==1.2.0
Or use uv:
uv tool install portunusmcp-sentinel==1.2.0
v1.0.0 release and Marketplace evidence
The signed v1.0.0 GitHub Release
published the exact package through the trusted
release workflow.
The MCP Sentinel Marketplace listing
is backed by the signed v1 alias, and the paired
external Action proof
passed against that consumer reference. Package hashes, provenance, tag
targets, retained SARIF, cost, and verification details are recorded in
artifacts/phase8-marketplace-evidence.md.
Historical v0.2.0 release evidence
The signed-tag Release workflow published the tested wheel and sdist through OIDC to TestPyPI and then PyPI. It verified both published hashes and attestations (wheel, sdist) and passed exact-version pipx and uv installs on Linux, macOS, and Windows with Python 3.10–3.13.
Historical v0.1.0 artifact
The earlier v0.1.0 GitHub Release
contains mcp_sentinel-0.1.0-py3-none-any.whl, produced by the
successful release workflow.
Its SHA-256 digest is
4672e63413e87bf750113c06a21133162d00f1e71ca6259a8394028c22b677aa.
To test a locally built 1.2.0 artifact without an index:
uv build
pipx install dist/portunusmcp_sentinel-1.2.0-py3-none-any.whl
# or
uv tool install dist/portunusmcp_sentinel-1.2.0-py3-none-any.whl
CLI
# Complete static + GPT + Docker analysis
sentinel scan ./path/to/server
# Validated SARIF
sentinel scan ./path/to/server --format sarif --output results.sarif
# Static analysis plus required semantic review
sentinel scan ./path/to/server --static-only
# Explicitly allow unreviewed candidates when GPT is unavailable
sentinel scan ./path/to/server --static-only --allow-degraded
# Compact output is default; bounded evidence is opt-in
sentinel scan ./path/to/server --verbose
# Set the failure threshold; default is high
sentinel scan ./path/to/server --fail-on critical
# Use a Responses-compatible organizational endpoint
sentinel scan ./path/to/server \
--llm-model organization-deployment \
--llm-base-url https://llm.example/openai/v1
--fail-on accepts critical, high, medium, low, or informational, and
determines which findings produce exit code 1.
Incremental adoption
Create a tracked native JSON baseline from a complete scan (the first command
normally exits 1 because it records existing findings):
sentinel scan . --allow-degraded --format json --output sentinel-baseline.json
Then compare later scans against it:
sentinel scan . --allow-degraded --baseline sentinel-baseline.json
Matched findings stay visible but do not affect --fail-on; new or changed
findings remain fail-eligible, and resolved findings are reported as an
aggregate count. Keep sentinel-baseline.json under review and protect refreshes
with CODEOWNERS. Generate deliberate updates into sentinel-baseline.next.json,
review the diff, then replace the accepted baseline. Formatting, line movement,
static evidence or fingerprint changes, and dynamic request/response changes all
produce new matcher identities. Dynamic logs do not.
Suppress one static source finding only when the exception is documented:
# sentinel: ignore[SENT-005] reason=test credential is inert and rotated
api_key = "ghp_example"
const apiKey = "ghp_example"; // sentinel: ignore[SENT-005] reason=test fixture
A standalone directive applies to the immediately following physical line; a
trailing directive applies to its own line. Only SENT-001 through SENT-007
in included .py, .ts, .mts, and .cts files are supported. Invalid or
reasonless directives fail the scan; unused valid directives emit warnings.
Suppressions stay visible with their reason and source location in console,
JSON, and SARIF.
Pre-commit
repos:
- repo: https://github.com/BashaarJavaid/MCP-Sentinel
rev: v1.2.0
hooks:
- id: mcp-sentinel
The hook runs the static rules with visible degraded review and respects the
normal sentinel.toml or default failure threshold. To use a baseline:
- id: mcp-sentinel
args: [--baseline, sentinel-baseline.json]
--baseline is CLI-only; there is no TOML or environment setting and Sentinel
never updates a baseline automatically.
--color/--no-color overrides display detection. Otherwise NO_COLOR disables
style and interactive TTYs receive color. Presentation flags are rejected for
JSON/SARIF rather than silently ignored.
A normal scan requires sentinel.target.yaml and
sentinel.permissions.yaml. --static-only omits Docker and launch
configuration but still requires semantic review. OPENAI_API_KEY is read only
by Sentinel; it is never printed, persisted, forwarded to the target, or stored
by the Responses API.
Model, reasoning effort, and base URL each use CLI → SENTINEL_* environment →
target-root sentinel.toml → built-in-default precedence. Their CLI options are
--llm-model, --llm-reasoning-effort, and --llm-base-url; the corresponding
environment variables are SENTINEL_LLM_MODEL,
SENTINEL_LLM_REASONING_EFFORT, and SENTINEL_LLM_BASE_URL. Public OpenAI
accepts gpt-5.6-sol and the gpt-5.6 alias with low or medium effort.
Generic compatible endpoints must expose the Responses API below a /v1 path.
Azure OpenAI's v1 protocol shape is supported with a base URL ending in
/openai/v1; it is covered by local emulation, not a live Azure deployment.
Only OPENAI_API_KEY bearer authentication is supported. Legacy Azure routing,
api-version, Microsoft Entra authentication, Azure-specific key variables,
and custom headers are unsupported. OPENAI_BASE_URL and
OPENAI_CUSTOM_HEADERS are rejected so Sentinel can validate routing and record
endpoint provenance. HTTPS uses the native system certificate store and honors
SSL_CERT_FILE and SSL_CERT_DIR.
A compatible URL committed in sentinel.toml requires an operator to pass
--trust-llm-endpoint or set SENTINEL_TRUST_LLM_ENDPOINT=true. A URL supplied
directly by CLI or environment is already operator-controlled and needs no
additional acknowledgment. Reports contain only endpoint mode and a SHA-256 URL
hash; the compatible URL itself is never printed or serialized.
Exit codes are stable:
| Code | Meaning |
|---|---|
| 0 | Complete scan with no finding at the failure threshold |
| 1 | Complete scan with a finding at or above the threshold |
| 2 | Target or configuration error |
| 3 | GPT, Docker, Semgrep, report-validation, or internal failure |
Operational messages use target error:, configuration error:, and
infrastructure error: prefixes. --debug adds internal tracebacks.
Judge demo
The wheel contains the vulnerable and clean fixtures, schemas, and GPT cassettes. No source checkout is required.
# Offline GPT replay plus real Docker probes
sentinel demo --replay-review --verbose
# Live GPT review plus real Docker probes
export OPENAI_API_KEY=your-key
sentinel demo --verbose
Both commands atomically refresh validated reports under
./sentinel-demo-results/; use --output-dir to change the location. Expected
vulnerabilities make the demo successful, so a complete demo exits 0.
Recorded review is prominently labeled and is never represented as a live call.
See the judge runbook and narration.
GPT-5.6 behavior and disclosure
The production reviewer uses the Responses API with:
- requested model
gpt-5.6-soland recorded returned model ID; store: false;- medium reasoning effort by default;
- strict Structured Outputs using the versioned review schema;
- deterministic context selection, redaction, batching, and candidate caps;
- validated source-range claims and constrained probe plans;
- current/origin latency, tokens, cache, failure, and micro-USD telemetry.
Public OpenAI cost estimates use the documented GPT-5.6 Sol rates as of 2026-09-03: $4/M input, $0.40/M cached input, and $20/M output, with cache writes at 1.25× input. Compatible endpoints retain token usage but report pricing and cost as unavailable.
Live mode calls the model. Replay mode feeds checked live responses through the
same parser, validators, merge logic, dynamic probes, and reports. Degraded mode
is explicit, leaves candidates in needs_review, and remains fail-on eligible.
Suppressed candidates stay visible in every report with their reasoning.
GitHub Action
name: MCP Sentinel
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
security-events: write
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: sentinel
uses: BashaarJavaid/MCP-Sentinel@v1
with:
target-path: .
fail-on: high
baseline: sentinel-baseline.json
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
The Action validates SARIF before upload and exposes sarif-path,
findings-count, and highest-severity. Fork pull requests receive no secret;
they run visibly degraded analysis and skip code-scanning upload. Non-fork runs
remain fail-closed. The current v1 live proof is documented in
artifacts/phase8-marketplace-evidence.md;
the earlier commit-pinned proof remains in
artifacts/phase4-action-evidence.md.
The Marketplace Action installs the exact 1.2.0 package. Its
highest-severity output excludes both suppressed and baseline-matched
findings.
v1 follows the latest compatible v1.x.y Action release. Security-sensitive
workflows can replace it with that release's full commit SHA. Maintainers move
only the signed major-version alias after the exact release passes its gates:
git tag -s -a -f v1 v1.2.0 -m "MCP Sentinel Action v1.2.0"
git push --force origin refs/tags/v1
Reports and reproducibility
python -m sentinel.schema check
python -m sentinel.report.validate_sarif results.sarif
make artifacts-check
make notices-check
artifacts/example.sarif is retained as historical live schema-1.2 evidence.
artifacts/gpt-ablation.json compares rules-only, GPT-reviewed, and
dynamically confirmed outcomes over the versioned truth set. Routine generation
uses replay and Docker; the final live refresh is hard-capped:
make artifacts
MAX_USD=0.50 make artifacts-live
License
MCP Sentinel is MIT licensed. Dependency licenses and packaged notice files are
recorded in THIRD_PARTY_NOTICES.md.
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 portunusmcp_sentinel-1.2.0.tar.gz.
File metadata
- Download URL: portunusmcp_sentinel-1.2.0.tar.gz
- Upload date:
- Size: 215.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
034a4075688fcdf605369540623d5219535d9b920ba1a4fe7c8ecb828322e2ea
|
|
| MD5 |
2e4e53502a91f585423bbf2c70bb1b8b
|
|
| BLAKE2b-256 |
a44792713419412707b19b616855efc9b5b2a5d7acff0f19b64fe392031dc276
|
Provenance
The following attestation bundles were made for portunusmcp_sentinel-1.2.0.tar.gz:
Publisher:
release.yml on BashaarJavaid/MCP-Sentinel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
portunusmcp_sentinel-1.2.0.tar.gz -
Subject digest:
034a4075688fcdf605369540623d5219535d9b920ba1a4fe7c8ecb828322e2ea - Sigstore transparency entry: 2713773659
- Sigstore integration time:
-
Permalink:
BashaarJavaid/MCP-Sentinel@cb48e5d24a785dbfafec947a3162f1e0e81ae270 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/BashaarJavaid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cb48e5d24a785dbfafec947a3162f1e0e81ae270 -
Trigger Event:
push
-
Statement type:
File details
Details for the file portunusmcp_sentinel-1.2.0-py3-none-any.whl.
File metadata
- Download URL: portunusmcp_sentinel-1.2.0-py3-none-any.whl
- Upload date:
- Size: 335.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec3fef5ee383f46bf9a1e38d707c3810ddeb5e7414c89d9c7835b675c78acc7a
|
|
| MD5 |
22c0b1dcaafc13abd6748158f6091783
|
|
| BLAKE2b-256 |
00f38e14df0e28005ba6da93f82ee80eddbf6b0b9b3796d095853aff9f6187ca
|
Provenance
The following attestation bundles were made for portunusmcp_sentinel-1.2.0-py3-none-any.whl:
Publisher:
release.yml on BashaarJavaid/MCP-Sentinel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
portunusmcp_sentinel-1.2.0-py3-none-any.whl -
Subject digest:
ec3fef5ee383f46bf9a1e38d707c3810ddeb5e7414c89d9c7835b675c78acc7a - Sigstore transparency entry: 2713773821
- Sigstore integration time:
-
Permalink:
BashaarJavaid/MCP-Sentinel@cb48e5d24a785dbfafec947a3162f1e0e81ae270 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/BashaarJavaid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cb48e5d24a785dbfafec947a3162f1e0e81ae270 -
Trigger Event:
push
-
Statement type: