mindforge-mcp-server 11.9.5 → 11.9.7

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 (3) hide show
  1. package/README.md +2 -1
  2. package/dist/index.js +734 -262
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -40,13 +40,14 @@ Or add it manually to your MCP host config (Claude Desktop, Cursor, VS Code):
40
40
  | `mindforge_memory_find_related` | read-only | Given free text, find related knowledge entries via hybrid (FTS5 + graph-traversal) retrieval. |
41
41
  | `mindforge_audit_log` | read-only | Read entries from the tamper-evident audit log (`.planning/AUDIT.jsonl`), optionally filtered by event. |
42
42
  | `mindforge_memory_remember` | **write** (guarded) | Persist a new knowledge entry (decision, pattern, or preference) into the graph. |
43
+ | `mindforge_browse` | **write** (guarded, open-world) | Drive the MindForge browser daemon: status/navigate/click/type/screenshot/assert. Requires the daemon to already be running (`/mindforge:browse --start`); never spawns it, and never exposes JS eval or cookie import. |
43
44
 
44
45
  All tools are annotated with `readOnlyHint` / `destructiveHint` so MCP hosts can enforce the right trust boundary; only `mindforge_memory_remember` writes, and it is append-only.
45
46
 
46
47
  ## Transport & security
47
48
 
48
49
  - **Transport:** stdio JSON-RPC (single embedded client).
49
- - **Scope:** read/append only within `CLAUDE_PROJECT_DIR`; no shell execution, no network egress.
50
+ - **Scope:** read/append only within `CLAUDE_PROJECT_DIR`, plus a loopback-only proxy to the MindForge browser daemon (`mindforge_browse`) — no shell execution. The MCP server process itself only ever talks to `127.0.0.1`; the daemon (a separate, pre-existing process this server never spawns) performs the actual browser network egress when a page navigates.
50
51
  - **Self-contained:** the SDK and Zod are bundled into `dist/index.js`; no `node_modules` are needed at runtime.
51
52
 
52
53
  ## Part of MindForge