mcp-agents-memory 0.8.2 → 0.9.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/.env.example CHANGED
@@ -59,7 +59,10 @@ OPENAI_API_KEY=sk-...
59
59
  # - Premium: audit + contradiction switched to grok-4.20-0309-reasoning
60
60
  # ─────────────────────────────────────────────────────────────
61
61
 
62
- EMBEDDING_MODEL=text-embedding-3-small
62
+ # Embedding model — must produce 3072-dim vectors to match halfvec(3072) schema.
63
+ # OpenAI text-embedding-3-large is the only OpenAI model with that dim today.
64
+ # Wrong dim → Cold Path embedder throws "Unexpected embedding dimension".
65
+ EMBEDDING_MODEL=text-embedding-3-large
63
66
 
64
67
  TRIAGE_PROVIDER=google
65
68
  TRIAGE_MODEL=gemini-2.5-flash-lite
package/README.md CHANGED
@@ -215,3 +215,43 @@ AGENT_KEY=... # 옵션, multi-persona 구분용
215
215
  ---
216
216
 
217
217
  *Status: fresh implementation 준비 단계. 실제 구현은 form 결정 후 진행.*
218
+
219
+
220
+
221
+ gemini cli trust setting 방법
222
+
223
+ ~/.gemini/settings.json
224
+
225
+ ```json
226
+ "mcpServers": {
227
+ "mcp-agents-memory": {
228
+ "type": "stdio",
229
+ "command": "node",
230
+ "args": [
231
+ "/Users/hoon/Documents/Playgrounds/mcp-agents-memory/build/index.js"
232
+ ],
233
+ "env": {},
234
+ "trust": true
235
+ }
236
+ }
237
+ ```
238
+
239
+ codex
240
+
241
+ ~/.codex/config.toml
242
+
243
+ ```toml
244
+ [mcp_servers.mcp-agents-memory]
245
+ command = "mcp-agents-memory"
246
+ args = []
247
+
248
+ [mcp_servers.mcp-agents-memory.tools.memory_startup]
249
+ approval_mode = "approve"
250
+
251
+ [mcp_servers.mcp-agents-memory.tools.save_message]
252
+ approval_mode = "approve"
253
+
254
+ [mcp_servers.mcp-agents-memory.tools.search_memory]
255
+ approval_mode = "approve"
256
+ ```
257
+