Ai Security Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Ai Security Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Secure your LLM workflows against Prompt Injections, Data Leaks, Credentials Exposure, and Phishing URLs — running natively inside Claude Desktop or any MCP-compatible environment.
SentinelMCP is an advanced, production-grade Model Context Protocol (MCP) server that acts as a secure firewall for Large Language Models. It analyzes inputs and outputs in real-time, masking sensitive data (PII) using Zod validation, serving dynamic audit stats as resources, and providing pre-configured system audit prompts.
| Threat Category | Without SentinelMCP | With SentinelMCP | Delta | Mitigation Method |
|---|---|---|---|---|
| Prompt Injection & Jailbreaks | 🔴 15% | 🟢 98% | +83% | Real-time weighted heuristic scanner |
| PII & Data Leakage | 🔴 0% | 🟢 100% | +100% | Algorithmic masking (TCKN, SSN, IBAN) |
| Secrets & Credentials Exposure | 🔴 5% | 🟢 99% | +94% | Static secrets triage patterns |
| Phishing & Unsafe URLs | 🔴 10% | 🟢 95% | +85% | URL reputation & TLD audit engine |
| MCP Server Poisoning | 🔴 0% | 🟢 97% | +97% | Strict shell interpreter sandbox check |
[!NOTE] Figures are based on SentinelMCP's internal test suites containing simulated threat payloads, jailbreaks, and PII datasets. Results may vary depending on LLM model prompts and system instructions.
graph LR
A[User Input / Prompt] --> B[SentinelMCP Server]
B --> C{Security Gateways}
C --> D[Prompt Injection Scanner]
C --> E[PII & Data Masker]
C --> F[Secrets & Keys Detector]
C --> G[URL Reputation Auditor]
D & E & F & G --> H[Clean & Verified Payload]
H --> I[Target LLM Engine]All inputs are validated using zod and automatically formatted to JSON Schema using zod-to-json-schema.
| Tool Name | Security Risk Mitigated | How It Works |
|---|---|---|
| `scan_prompt_injection` | Prompt Injection, Jailbreaks, System Prompt Evasion | Weighted pattern analysis and multi-match boost scoring (0-100). |
| `check_sensitive_data` | Data Leakage (PII, Credit Cards) | Regex matching + algorithmic checksum verification (TCKN, SSN, IBAN). |
| `detect_secrets` | Embedded Hardcoded Secrets | Static analysis scanning for AWS, Stripe, GitHub Tokens, and Private Keys. |
| `check_url_safety` | Phishing Links, Spam Redirection | URL extraction & auditing for direct IP hosting, spam TLDs. |
| `validate_mcp_config` | Host Privilege Escalation, Command Poisoning | Auditing config parameters against shell execution and metacharacters. |
| `audit_ai_output` | Model Hallucinations, Poisoned Output | Analyzing model responses for leaks, restrictions evasion, and toxicity. |
SentinelMCP exposes real-time session statistics and configuration details directly to the LLM Client:
Pre-packaged prompts to guide LLMs through systematic audit operations:
Link SentinelMCP directly to your local Claude Desktop application by adding it to your configurations (%APPDATA%/Claude/claude_desktop_config.json or ~/Library/Application Support/Claude/claude_desktop_config.json):
Run SentinelMCP instantly without cloning the repo:
{
"mcpServers": {
"sentinel-mcp": {
"command": "npx",
"args": [
"-y",
"sentinel-mcp"
]
}
}
}If you cloned and built the project locally:
{
"mcpServers": {
"sentinel-mcp": {
"command": "node",
"args": [
"/absolute/path/to/sentinel-mcp/build/index.js"
]
}
}
}security-rules.json)Define your own keywords, system rules, or custom regex checks dynamically. Create a security-rules.json file in your workspace:
{
"customPromptPatterns": [
"custom-system-bypass-phrase",
"my-test-jailbreak-trigger"
],
"customSensitivePatterns": {
"privateToken": "\\bsecret_token_[a-zA-Z0-9]{12}\\b"
}
}npm installnpm run buildnpm run testSentinelMCP directly addresses core vulnerabilities highlighted in the OWASP Top 10 for LLM Applications:
scan_prompt_injection.audit_ai_output.check_sensitive_data & detect_secrets.check_url_safety.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.