codex-dev-mcp-suite 1.8.0 → 1.8.1
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 +19 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/codex-dev-mcp-suite)
|
|
6
6
|
[](./LICENSE)
|
|
7
7
|
[](https://nodejs.org)
|
|
8
|
+
[](https://saweria.co/sijuling)
|
|
8
9
|
|
|
9
10
|
Published as `codex-dev-mcp-suite` for backward compatibility.
|
|
10
11
|
|
|
@@ -57,7 +58,7 @@ project-memory-mcp --version
|
|
|
57
58
|
project-memory-mcp --doctor # config diagnostics; API keys redacted
|
|
58
59
|
```
|
|
59
60
|
|
|
60
|
-
Other clients (Claude Code, Cursor, Cline, ...): see
|
|
61
|
+
Other clients (Claude Code, Cursor, Hermes Agent, AGY CLI, Cline, ...): see
|
|
61
62
|
[`docs/clients/`](docs/clients/). Full env reference:
|
|
62
63
|
[`docs/configuration.md`](docs/configuration.md). Data flow:
|
|
63
64
|
[`docs/privacy.md`](docs/privacy.md).
|
|
@@ -66,20 +67,20 @@ Other clients (Claude Code, Cursor, Cline, ...): see
|
|
|
66
67
|
|
|
67
68
|
| Server | What it does | Key tools |
|
|
68
69
|
|---|---|---|
|
|
69
|
-
| **project-memory** | Searchable Markdown knowledge vault (Obsidian-style notes + on-demand recall). Notes are also exposed as MCP resources. | `memory_save`, `memory_recall`, `memory_list`, `memory_get`, `memory_delete`, `memory_reindex`, `memory_link`, `memory_global_recall`, `memory_dedup` |
|
|
70
|
+
| **project-memory** | Searchable Markdown knowledge vault (Obsidian-style notes + on-demand recall). Notes are also exposed as MCP resources. | `memory_save`, `memory_recall`, `memory_list`, `memory_get`, `memory_delete`, `memory_reindex`, `memory_link`, `memory_global_recall`, `memory_dedup`, `memory_moc`, `memory_graph` |
|
|
70
71
|
| **devjournal** | Per-project session timeline + handoff/resume (anti-compaction). | `journal_log`, `journal_handoff`, `journal_resume`, `journal_timeline`, `journal_search`, `journal_clear_handoff` |
|
|
71
72
|
| **checkpoint** | Git-independent file snapshots for safe experimentation. | `checkpoint_create`, `checkpoint_list`, `checkpoint_diff`, `checkpoint_restore`, `checkpoint_delete` |
|
|
72
|
-
| **context-pack** | Token-efficient project briefing (stack, tree, symbols, search). | `pack_overview`, `pack_tree`, `pack_outline`, `pack_search` |
|
|
73
|
+
| **context-pack** | Token-efficient project briefing & security audit (stack, tree, symbols, search, security audit). | `pack_overview`, `pack_tree`, `pack_outline`, `pack_search`, `pack_audit` |
|
|
73
74
|
|
|
74
75
|
## Recall quality (project-memory & devjournal)
|
|
75
76
|
|
|
76
77
|
Recall auto-selects the best available mode:
|
|
77
78
|
|
|
78
|
-
1. **semantic** — if an embeddings endpoint is configured (any OpenAI-compatible `/v1/embeddings`: OpenAI, Ollama, LM Studio, OpenRouter, vLLM, LiteLLM, 9router, ...)
|
|
79
|
+
1. **semantic** — if an embeddings endpoint is configured (any OpenAI-compatible `/v1/embeddings`: OpenAI, Ollama, LM Studio, OpenRouter, vLLM, LiteLLM, 9router, ...) or local offline embedding (`MCP_LOCAL_EMBED=true`)
|
|
79
80
|
2. **rerank** — keyword prefilter then an LLM reranker (any OpenAI-compatible chat model)
|
|
80
81
|
3. **keyword** — always-available offline fallback
|
|
81
82
|
|
|
82
|
-
All network features degrade gracefully: no endpoint = keyword mode, never an error.
|
|
83
|
+
All network features degrade gracefully: no endpoint = local/keyword mode, never an error.
|
|
83
84
|
Use the neutral `MCP_*` environment variables for new installs; legacy
|
|
84
85
|
`NINEROUTER_*` and `LLM_*` variables are still supported. See
|
|
85
86
|
[`docs/configuration.md`](docs/configuration.md).
|
|
@@ -88,6 +89,13 @@ Need hard local-only behavior? Set `MCP_DETERMINISTIC_FALLBACK=true` to disable
|
|
|
88
89
|
embeddings/rerank even if model keys are present; results are labeled
|
|
89
90
|
`[deterministic]`.
|
|
90
91
|
|
|
92
|
+
### New in v1.8.0 & v1.7.0
|
|
93
|
+
|
|
94
|
+
- **Zero-Dependency Local Offline Embeddings (`v1.8.0`)**: Set `MCP_LOCAL_EMBED=true` to enable pure JS 384-d term-frequency hashing vector search when no remote embedding API key is set. Sub-millisecond execution, zero network calls, zero external npm packages.
|
|
95
|
+
- **Codebase Security Audit (`pack_audit` in `v1.7.0`)**: Scan projects for missing `.gitignore`, hardcoded secrets (`.env`, `.pem`, `id_rsa`), and overly large files.
|
|
96
|
+
- **Obsidian Vault Parity (`v1.7.0`)**: `memory_moc` generates Map of Content index files, `memory_graph` maps backlinks & graph links, and bootstrap `.obsidian` vault structure automatically.
|
|
97
|
+
- **Multi-Client Setup Guides**: Native support & setup guides for [Hermes Agent](docs/clients/hermes.md), [Google Antigravity CLI (AGY)](docs/clients/antigravity.md), [Claude Code](docs/clients/claude-code.md), and [Generic MCP hosts](docs/clients/generic-mcp.md).
|
|
98
|
+
|
|
91
99
|
## Install
|
|
92
100
|
|
|
93
101
|
Requires Node.js >= 18.
|
|
@@ -342,6 +350,12 @@ your machine unless you explicitly configure an external model/API endpoint for
|
|
|
342
350
|
rerank or embeddings. See [privacy and data flow](docs/privacy.md). Your
|
|
343
351
|
personal vault/journal/checkpoints are gitignored.
|
|
344
352
|
|
|
353
|
+
## ☕ Support / Donasi
|
|
354
|
+
|
|
355
|
+
Jika `codex-dev-mcp-suite` bermanfaat untuk produktivitas pengkodean Anda, dukung pengembangan proyek open-source ini melalui Saweria (QRIS, GoPay, DANA, OVO, ShopeePay):
|
|
356
|
+
|
|
357
|
+
[](https://saweria.co/sijuling)
|
|
358
|
+
|
|
345
359
|
## License
|
|
346
360
|
|
|
347
361
|
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codex-dev-mcp-suite",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Four local, file-based MCP servers for solo devs/vibecoders: persistent project memory, session handoff/resume, git-independent file checkpoints, and token-efficient project briefings. Works with any MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|