mcpwall 0.1.1 → 0.1.2

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 +7 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # mcpwall
2
2
 
3
- Deterministic security proxy for [MCP](https://modelcontextprotocol.io) tool calls. Sits between your AI coding tool (Claude Code, Cursor, Windsurf) and MCP servers, intercepting every JSON-RPC message and enforcing YAML-defined policies — no LLM, no cloud, pure rule-based.
3
+ [![npm version](https://img.shields.io/npm/v/mcpwall)](https://www.npmjs.com/package/mcpwall)
4
+ [![CI](https://github.com/behrensd/mcp-firewall/actions/workflows/ci.yml/badge.svg)](https://github.com/behrensd/mcp-firewall/actions/workflows/ci.yml)
5
+ [![Node.js](https://img.shields.io/node/v/mcpwall)](https://nodejs.org)
6
+ [![License: FSL-1.1-ALv2](https://img.shields.io/badge/license-FSL--1.1--ALv2-blue)](./LICENSE)
4
7
 
5
- Think **iptables**, but for MCP tool calls.
8
+ **iptables for MCP.** Blocks dangerous tool calls, scans for secret leakage, logs everything. No AI, no cloud, pure rules.
9
+
10
+ Sits between your AI coding tool (Claude Code, Cursor, Windsurf) and MCP servers, intercepting every JSON-RPC message and enforcing YAML-defined policies.
6
11
 
7
12
  ## Why
8
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpwall",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Deterministic security proxy for MCP tool calls — iptables for MCP. Blocks dangerous tool calls, scans for secret leakage, logs everything. No AI, no cloud, pure rules.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,7 +34,8 @@
34
34
  "type": "git",
35
35
  "url": "git+https://github.com/behrensd/mcp-firewall.git"
36
36
  },
37
- "homepage": "https://github.com/behrensd/mcp-firewall",
37
+ "mcpName": "io.github.behrensd/mcpwall",
38
+ "homepage": "https://mcpwall.dev",
38
39
  "bugs": {
39
40
  "url": "https://github.com/behrensd/mcp-firewall/issues"
40
41
  },