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 +11 -2
- package/dist/index.js +851 -482
- package/package.json +9 -6
- package/dist/highlights-eq9cgrbb.scm +0 -604
- package/dist/highlights-ghv9g403.scm +0 -205
- package/dist/highlights-hk7bwhj4.scm +0 -284
- package/dist/highlights-r812a2qc.scm +0 -150
- package/dist/highlights-x6tmsnaa.scm +0 -115
- package/dist/injections-73j83es3.scm +0 -27
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
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
|
|
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
|
|