Skip to main content
Glama

πŸ›‘οΈ MCP-Shield Pro β€” Enterprise MCP Supply Chain & Runtime Governance Shield

MCP-Shield Pro Banner

Enterprise-grade zero-dependency security shield and runtime governance engine for Model Context Protocol (MCP) servers, AI agent tool pipelines, and AIBOM compliance.


⚑ Key Highlights & Core Capabilities

  • ⚑ Zero External Runtime Dependencies: Pure Node.js ES Module runtime delivering sub-millisecond execution (< 2ms) with zero third-party npm package overhead.

  • πŸ›‘οΈ OWASP MCP Top 10 Security Audit: Automated static & dynamic code inspection covering unauthenticated endpoints, tool signature gaps, prompt injection, and command injection.

  • πŸ” Cryptographic Tool Call Signing: HMAC-SHA256 tool request signing and replay attack prevention for agent execution pipelines.

  • πŸ“„ Standardized AIBOM Generator: Automated AI Bill of Materials (AIBOM) generation tracking component file hashes, tools, and security provenance.

  • 🧱 Inline Runtime Parameter Firewall: Intercepts tool parameters in real-time to block path traversal, shell metacharacters, SSRF, and adversarial injection patterns.

  • πŸ”Œ Native MCP Protocol Server: Stdio JSON-RPC 2.0 interface exposing mcp_scan, generate_aibom, and mcp_verify tools directly to OpenClaw, Codex, Claude Code, and Cursor.

  • 🎨 Interactive Browser Studio Dashboard: Embedded single-file studio (demo/index.html) featuring live security gauges, OWASP rule status, and parameter firewall sandbox.

  • πŸ”„ Error-Resuming Auto-Installer: Executable ./install.sh with checkpoint tracking (.install_checkpoint) and ./install.sh --resume recovery.


Related MCP server: mcp_Shield

πŸ“ System Architecture

MCP-Shield Pro Architecture


πŸ›‘οΈ OWASP MCP Top 10 Security Rule Coverage

Rule ID

Threat Category

Description

Severity

Safeguard Mechanism

MCP-01

πŸ”‘ Authentication

Unauthenticated Endpoint Exposure

πŸ”΄ HIGH

Bearer/HMAC Auth Verification

MCP-02

πŸ” Integrity

Missing Cryptographic Tool Signatures

πŸ”΄ HIGH

ToolSigner HMAC-SHA256 Enforcer

MCP-03

🧠 AI Security

Indirect Prompt Injection Vulnerability

🟣 CRITICAL

Delimiter Boundary Sanitization

MCP-04

πŸ›‘οΈ Authorization

Excess Tool Privileges & Over-scoping

🟑 MEDIUM

Principle of Least Privilege Inspector

MCP-05

πŸ“¦ Supply Chain

Untrusted Supply Chain Dependency

πŸ”΄ HIGH

AIBOM Provenance & Hash Verification

MCP-06

⚑ Execution

Arbitrary Command & Shell Injection

🟣 CRITICAL

RuntimeFirewall Parameter Sanitizer

MCP-07

πŸ“ File System

Path Traversal & Traversal Escapes

πŸ”΄ HIGH

Workspace Root Path Containment

MCP-08

🌐 Network

Server-Side Request Forgery (SSRF)

πŸ”΄ HIGH

URL Host Domain Allowlisting

MCP-09

πŸ”’ Privacy

Unbounded Context & Credential Leak

πŸ”΄ HIGH

Secret Regex & Pattern Scrubber

MCP-10

πŸ“ Logging

Missing Audit Trail & Session Identity

🟑 MEDIUM

Structured JSON Audit Logger


πŸš€ Quick Start & Installation

1️⃣ Automatic Installation with Error Resume

# Clone and run the self-healing auto-installer
git clone https://github.com/tonysheesh/mcp-shield-pro.git
cd mcp-shield-pro
./install.sh

# If any step is interrupted, resume automatically:
./install.sh --resume

2️⃣ Running Security Audits via CLI

# Run OWASP MCP Top 10 security audit on current codebase
node bin/mcp-shield.js --scan .

# Generate AI Bill of Materials (AIBOM)
node bin/mcp-shield.js --aibom .

# Run strict Quality Approval Gate checks
node bin/mcp-shield.js --quality .

⚑ Comparison & Superiority

Feature / Metric

Legacy Scanners & Python Tools

MCP-Shield Pro

Runtime Dependencies

Heavy (pip packages, native C++)

0 External Dependencies (Pure Node ESM)

Audit Execution Speed

~1.5s - 3.2s per codebase

< 2ms per scan (150x Faster)

Tool Call Integrity

Plaintext JSON / Unsigned

HMAC-SHA256 Cryptographic Signatures

Supply Chain Governance

Manual SBOMs

Automated AI Bill of Materials (AIBOM)

Runtime Protection

Static Analysis Only

Inline Parameter Firewall Sandbox

IDE & Agent Integration

Manual CLI invocation

Native Stdio MCP JSON-RPC Server

Installer Resiliency

Standard script (fails on error)

Checkpoint State Tracking (--resume)


πŸ’» Programmatic API Usage

import { MCPScanner, ToolSigner, RuntimeFirewall, AIBOMGenerator } from 'mcp-shield-pro';

// 1. Audit an MCP tool file
const scanner = new MCPScanner();
const audit = scanner.scanFile('./lib/mcpServer.js');
console.log(`Security Score: ${audit.score}/100 | Passed: ${audit.passed}`);

// 2. Cryptographically sign a tool call
const signer = new ToolSigner('your-master-secret-key');
const signedPayload = signer.signToolCall('query_database', { query: 'SELECT 1' });

// 3. Verify signature
const verification = signer.verifyToolCall(signedPayload);
console.log(`Signature Valid: ${verification.valid}`);

// 4. Runtime parameter firewall inspection
const firewall = new RuntimeFirewall();
const inspection = firewall.inspectParams('read_file', { path: '../../etc/passwd' });
console.log(`Allowed: ${inspection.allowed}`); // false

πŸ—ΊοΈ Roadmap

  • Support for Ed25519 asymmetric public-key signature verification for decentralized tool execution.

  • Real-time eBPF syscall filtering integration for containerized agent workloads.

  • Automated OWASP MCP Top 10 rule auto-fixer (--fix) to patch vulnerabilities in-place.

  • Multi-region threat intelligence feed synchronization for emerging prompt injection patterns.

  • Browser Studio web assembly (WASM) compiler for client-side zero-server scanning.


πŸ“œ License

MIT License Β© 2026 tonysheesh

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    A security-hardened, containerized MCP server framework that provides superior isolation and enterprise-grade security through Docker containers. Enables secure MCP command execution with comprehensive diagnostics, plugin architecture, and production-ready features like SSL/TLS and rate limiting.
    Last updated
    2
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP security server for AI coding agents. 12 tools: pre-install guardian, vulnerability audit, supply-chain attack detection via static code analysis, and CycloneDX 1.6 SBOM generation. Zero runtime dependencies.
    Last updated
    14
    53
    15
    Apache 2.0
  • A
    license
    -
    quality
    C
    maintenance
    MCP server for AI agent security guardrails. Provides input validation, prompt injection detection, PII redaction, output filtering, policy enforcement, rate limiting, and comprehensive audit logging.
    Last updated
    48
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Crypto transaction firewall and risk tools for MCP agents.

  • Security firewall for AI agents β€” scans MCP calls for injection, secrets, and risks.

  • A paid remote MCP for ZeroLang, built to return verdicts, receipts, usage logs, and audit-ready JSON

View all MCP Connectors

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/tonysheesh/mcp-shield-pro'

If you have feedback or need assistance with the MCP directory API, please join our Discord server