mcp-squared 0.2.0 → 0.3.0

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.
package/README.md CHANGED
@@ -56,6 +56,9 @@ bun run build
56
56
 
57
57
  # Run tests
58
58
  bun test
59
+
60
+ # Dependency audit
61
+ bun run audit
59
62
  ```
60
63
 
61
64
  ### Standalone Executable (Experimental)
@@ -66,7 +69,7 @@ Build a single-file executable with Bun:
66
69
  bun run build:compile
67
70
  ```
68
71
 
69
- Run the compile validation matrix (target support, size check, standalone smoke test, embeddings probe):
72
+ Run the compile validation matrix (darwin/linux/windows target support, size checks, standalone smoke test, embeddings probe):
70
73
 
71
74
  ```bash
72
75
  bun run build:compile:matrix
@@ -99,8 +102,14 @@ Auto mode chooses `daemon` when running in a TTY and `proxy` when stdin/stdout a
99
102
  ```bash
100
103
  mcp-squared daemon # Start the shared backend
101
104
  mcp-squared proxy # Run a stdio proxy that connects to the daemon
105
+ mcp-squared daemon --daemon-socket=tcp://127.0.0.1:45000
106
+ mcp-squared proxy --daemon-socket=tcp://127.0.0.1:45000
102
107
  ```
103
108
 
109
+ Security notes for TCP daemon endpoints:
110
+ - TCP daemon bind host is restricted to loopback (`localhost`, `127.0.0.1`, `::1`).
111
+ - Optional shared-secret handshake is available with `--daemon-secret=<secret>` (or `MCP_SQUARED_DAEMON_SECRET`).
112
+
104
113
  When installing into supported clients, you can register the proxy automatically:
105
114
 
106
115
  ```bash
@@ -192,7 +201,7 @@ We welcome contributions! Please see `.github/CONTRIBUTING.md` for details on ho
192
201
 
193
202
  ## Releasing
194
203
 
195
- Maintainers can follow `docs/RELEASING.md` for the npm release checklist.
204
+ Maintainers can follow `docs/RELEASING.md` for the npm release checklist and `docs/DEPENDENCY_MAINTENANCE.md` for dependency cadence and exception handling.
196
205
 
197
206
  ## License
198
207