Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Shrike Security

NPM · SHRIKE-MCP · SCANNED AUG 3

AI agent security scanner — prompt injection detection, SQL injection, PII isolation, threat intel.

Available components

+24 this week 67 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 95), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 95), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability65
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1391 tokens (~198/item across 7 items; 7 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · shrike-mcp

# add to Claude Code
claude mcp add shrike-security-shrike-mcp -- npx -y shrike-mcp
# add to Codex CLI
codex mcp add shrike-security-shrike-mcp -- npx -y shrike-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "shrike-security-shrike-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "shrike-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add shrike-security-shrike-mcp --command npx --arg -y --arg shrike-mcp
# ~/.hermes/config.yaml
mcp_servers:
  shrike-security-shrike-mcp:
    command: "npx"
    args: ["-y", "shrike-mcp"]
// mcp.json
{
  "mcpServers": {
    "shrike-security-shrike-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "shrike-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +44
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Tool coverage: 100 → unverified functional
    • Capabilities: pass → unverified functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Stability: unverified → 0.23 functional
    • License: unverified → pass functional
    • Schema quality: unverified → excellent functional
    • Licence: Apache-2.0 functional
  • 1 Aug 26 +5
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 +12
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −37
    • Malware scan: pass → unverified security
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 43

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 7 exposed · ~1,391 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
get_threat_intel ~68

Retrieves current threat intelligence including active detection patterns, threat categories, and statistics.

NameTypeReqDescription
categorystringFilter by threat category (e.g., prompt_injection, jailbreak, pii_extraction)
limitnumberMaximum number of patterns to return (default: 50)

No output schema declared.

No examples provided.

report_bypass ~243

Reports content that bypassed security checks to help improve detection. Supports multiple bypass types: - Prompt bypasses: Use 'prompt' field - File write bypasses: Use 'filePath' and/or 'fileContent' fields - SQL bypasses: Use 'sqlQuery' field - Web search bypasses: Use 'searchQuery' field The bypass will be analyzed and may generate a new detection pattern.

NameTypeReqDescription
categorystringThreat category (auto-inferred if not provided)
fileContentstringFile content that should have been blocked (e.g., AWS keys, SSN)
filePathstringFile path for file_write bypasses (e.g., config.yaml with undetected secrets)
mutationTypestringType of mutation used (e.g., semantic_rewrite, encoding_exploit, unicode_tricks)
notesstringAdditional notes about the bypass
promptstringThe prompt that bypassed security detection
searchQuerystringWeb search query with undetected PII
sqlQuerystringSQL query that bypassed injection detection

No output schema declared.

No examples provided.

scan_file_write ~183

Scans a file write operation before execution for security threats. Checks: - Sensitive file paths (.env, credentials, SSH keys, certificates) - Path traversal attacks (../, system directories) - PII in content (SSN, credit cards, emails) - Secrets in content (API keys, passwords, tokens) - Malicious code patterns (reverse shells, fork bombs) Returns: - blocked: true/false - threat_type: path_traversal, secrets_exposure, etc. - severity: critical/high/medium/low - confidence: high/medium/low - guidance: actionable explanation - request_id: unique identifier

NameTypeReqDescription
contentstringyesThe content to be written to the file
modestringWrite mode (default: overwrite)
pathstringyesThe target file path to write to

No output schema declared.

No examples provided.

scan_prompt ~258

Scans text for security threats including PII, prompt injection, jailbreak attempts, and toxicity. Returns a security assessment with: - blocked: true/false - whether the content was blocked - threat_type: category of threat detected (prompt_injection, jailbreak, pii_exposure, etc.) - severity: critical/high/medium/low - confidence: high/medium/low - guidance: actionable explanation of what was detected - request_id: unique identifier for this scan If blocked=false, only request_id is returned (content is safe). When redact_pii=true, PII is redacted client-side before scanning. The response includes: - pii_redaction.redacted_content: text with PII replaced by tokens like [EMAIL_1] - pii_redaction.tokens: array of {token, original, type} for rehydrating LLM responses PII never leaves the MCP process when redaction is enabled.

NameTypeReqDescription
contentstringyesThe text content to scan for security threats
contextstringOptional conversation history or context for better analysis
redact_piibooleanWhen true, PII is redacted before scanning. Response includes redacted_content and tokens for rehydration.

No output schema declared.

No examples provided.

scan_response ~289

Scans an LLM-generated response before showing it to the user. Detects: - System prompt leaks (LLM revealing its instructions) - Unexpected PII in output (PII not present in the original prompt) - Toxic or hostile language in generated content - Topic drift (response diverges from prompt intent) - Policy violations in generated content Provide the original_prompt for best results — it enables PII diff analysis and topic mismatch detection. When pii_tokens is provided (from scan_prompt with redact_pii=true), the response is rehydrated after scanning. Tokens like [EMAIL_1] are replaced with the original values. The rehydrated text is returned as rehydrated_response. Returns: - blocked: true/false - threat_type: category of threat detected - severity/confidence/guidance: security assessment details - rehydrated_response: (when pii_tokens provided and response is safe) text with PII restored - request_id: unique identifier

NameTypeReqDescription
original_promptstringThe original prompt that generated this response. Enables PII diff and topic mismatch detection.
pii_tokensarrayPII token map from scan_prompt(redact_pii=true). When provided, tokens in the response are rehydrated with original values after scanning.
responsestringyesThe LLM-generated response to scan for security threats

No output schema declared.

No examples provided.

scan_sql_query ~193

Scans a SQL query before execution for security threats. Checks for: - SQL injection patterns (UNION, stacked queries, tautologies, blind injection) - Destructive operations (DROP, TRUNCATE, DELETE without WHERE) - Privilege escalation (GRANT, CREATE USER) - PII extraction (queries on password/SSN/credit card columns) Set allowDestructive=true to permit DROP/TRUNCATE for migrations. Returns: - blocked: true/false - threat_type: sql_injection, etc. - severity: critical/high/medium/low - confidence: high/medium/low - guidance: actionable explanation - request_id: unique identifier

NameTypeReqDescription
allowDestructivebooleanAllow destructive operations like DROP/TRUNCATE (default: false)
databasestringOptional target database name for context
querystringyesThe SQL query to scan

No output schema declared.

No examples provided.

scan_web_search ~157

Scans a web search query before execution for security issues. Checks for: - PII in search queries (SSN, credit cards, API keys, private keys) - Data exfiltration patterns (searching for leaked credentials, Google dorks) - Blocked/suspicious domains (paste sites, suspicious TLDs) Returns: - blocked: true/false - threat_type: blocked_domain, pii_exposure, etc. - severity: critical/high/medium/low - confidence: high/medium/low - guidance: actionable explanation - request_id: unique identifier

NameTypeReqDescription
querystringyesThe search query to scan
targetDomainsarrayOptional list of target domains to validate

No output schema declared.

No examples provided.