@aiclude/mcp-guard 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +20 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,7 +19,7 @@ In 2026, **MCP (Model Context Protocol)** has become the de facto standard for A
19
19
  - **92% exploit probability** with just 10 MCP plugins installed ([VentureBeat](https://venturebeat.com))
20
20
  - **OWASP MCP Top 10** published — Tool Poisoning, Prompt Injection, Context Spoofing confirmed as real attack vectors
21
21
 
22
- Existing security tools (WAF, SAST, DAST) don't operate at the MCP protocol level. Attacks happening inside **JSON-RPC message streams** over stdio pipes or SSE are invisible to traditional security tools.
22
+ Existing security tools (WAF, SAST, DAST) don't understand MCP protocol semantics. A WAF can see HTTP requests, but it cannot detect MCP-specific attacks like zero-width character hiding in tool descriptions, tool name spoofing, or prompt injection embedded in tool definitions. In stdio mode, traffic doesn't even use HTTP — it's completely off the radar.
23
23
 
24
24
  > **MCP Guard** inspects all messages in real-time and **blocks dangerous tool calls before they reach the server**.
25
25
 
@@ -75,6 +75,25 @@ Add to `.cursor/mcp.json`:
75
75
  }
76
76
  ```
77
77
 
78
+ ### Claude Code (CLI) Integration
79
+
80
+ ```bash
81
+ claude mcp add my-server-guarded -- npx -y @aiclude/mcp-guard -- npx -y @some/mcp-server
82
+ ```
83
+
84
+ Or edit `~/.claude/claude_code_config.json` directly:
85
+
86
+ ```json
87
+ {
88
+ "mcpServers": {
89
+ "fetch-guarded": {
90
+ "command": "npx",
91
+ "args": ["-y", "@aiclude/mcp-guard", "--", "npx", "-y", "@modelcontextprotocol/server-fetch"]
92
+ }
93
+ }
94
+ }
95
+ ```
96
+
78
97
  ---
79
98
 
80
99
  ## Key Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiclude/mcp-guard",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "MCP runtime security proxy — intercepts and enforces security policies on MCP tool calls",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",