MCP Sentinel
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., "@MCP Sentinelanalyze the call chain in chain_exfil.json for anomalies"
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.
MCP Sentinel
Runtime call-chain anomaly monitor for MCP servers. Sentinel watches what an MCP server actually does across a whole agent session — not just what a single tool definition says — and catches the emergent attacks that static scanners miss.
Why this exists
There are already a dozen MCP static scanners — they read a server's tool definitions once and flag injection strings. But the real damage in agentic systems is emergent across calls: read a secret → POST it to a URL → delete the log. Each call looks fine alone. No open-source tool sequences the calls and flags the pattern. Sentinel does.
It also closes the rug-pull gap: a server passes review, then silently mutates its tool descriptions after install so the agent re-reads poisoned instructions next session. Sentinel cryptographically pins every tool definition and flags any post-approval change.
static scanners | Sentinel | |
Scan tool definitions | ✅ | ✅ |
Cryptographic pin + rug-pull / drift detection | ✗ | ✅ |
Call-chain behavioural anomaly detection | ✗ | ✅ |
A–F grade per server | some | ✅ |
Ships as an MCP server (agent can self-audit) | rare | ✅ |
GitHub Action / CI gate | some | ✅ |
Related MCP server: MCP Splunk
Install
pip install mcp-sentinel # zero-dependency core (CLI)
pip install "mcp-sentinel[server]" # + the MCP-server entrypointUse
1. Pin a server's tools, then detect rug-pulls
sentinel pin examples/tools.json --lock sentinel.lock # trust on first use
sentinel verify examples/tools.json --lock sentinel.lock # later sessions
# DRIFT [mutated] get_weather *** RUG-PULL SUSPECT *** (exit 1)2. Analyze a recorded call-chain
sentinel analyze examples/chain_exfil.json
# [HIGH ] SENT001 Data read by 'read_file' (seq 0) flows into network tool 'http_post' (seq 1) - possible exfiltration.
# [HIGH ] SENT002 Destructive tool 'delete_file' (seq 2) runs after read 'read_file' (seq 0) across a server boundary - read-then-destroy pattern.3. Grade it (CI gate — exit 0 for A/B, 1 otherwise)
sentinel grade examples/chain_exfil.json
# GRADE D (50/100) findings=2 drifts=0 (exit 1)4. As an MCP server (agents self-audit)
sentinel-mcp # exposes analyze_chain, check_drift, grade_serverBuilt-in anomaly rules
ID | Pattern | Severity |
| read-then-exfiltrate — read output flows into a later network call | HIGH |
| destructive-after-read — irreversible delete/overwrite following a read (HIGH across a server boundary) | HIGH / MED |
| repetition-loop — identical tool+args fired repeatedly (runaway agent) | MED |
Rules are plain functions (CallChain) -> list[Finding]; add your own by passing
them to AnomalyEngine(rules=[...]).
Design
agent ──calls──> [ Sentinel ] ──forwards──> target MCP server
│
├─ pin tool defs on first connect (sentinel.lock)
├─ record every call into a CallChain
└─ run anomaly rules + gradeCapability tags (read / write / network / destructive) drive the rules.
They come from MCP tool annotations (readOnlyHint, destructiveHint) and fall
back to name/description heuristics when a server omits them — which most do.
Status
v0.1 — pinning, the three anomaly rules above, grading, CLI, and the MCP-server
interface are implemented and tested. The transparent stdio proxy that
records a live chain automatically is on the roadmap (today you feed it a
recorded chain or wire CallChain.record() into your client).
License
MIT © Antonio Delgado
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Zuga-luga/mcp-sentinel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server