agent-memory-store 0.0.4 → 0.0.5

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 (2) hide show
  1. package/README.MD +26 -4
  2. package/package.json +1 -1
package/README.MD CHANGED
@@ -89,10 +89,12 @@ Add to your `opencode.json`:
89
89
 
90
90
  ```json
91
91
  {
92
+ "$schema": "https://opencode.ai/config.json",
92
93
  "mcp": {
93
94
  "agent-memory-store": {
94
- "command": "npx",
95
- "args": ["-y", "agent-memory-store"]
95
+ "type": "local",
96
+ "command": ["npx", "-y", "agent-memory-store"],
97
+ "enabled": true
96
98
  }
97
99
  }
98
100
  }
@@ -115,11 +117,13 @@ Add to your MCP settings file:
115
117
 
116
118
  ### Custom storage path
117
119
 
118
- If you need to store memory outside the project directory, set `AGENT_STORE_PATH` in the `env` block:
120
+ If you need to store memory outside the project directory, set `AGENT_STORE_PATH` in the environment block.
121
+
122
+ **Claude Code:**
119
123
 
120
124
  ```json
121
125
  {
122
- "mcp": {
126
+ "mcpServers": {
123
127
  "agent-memory-store": {
124
128
  "command": "npx",
125
129
  "args": ["-y", "agent-memory-store"],
@@ -131,6 +135,24 @@ If you need to store memory outside the project directory, set `AGENT_STORE_PATH
131
135
  }
132
136
  ```
133
137
 
138
+ **opencode:**
139
+
140
+ ```json
141
+ {
142
+ "$schema": "https://opencode.ai/config.json",
143
+ "mcp": {
144
+ "agent-memory-store": {
145
+ "type": "local",
146
+ "command": ["npx", "-y", "agent-memory-store"],
147
+ "enabled": true,
148
+ "environment": {
149
+ "AGENT_STORE_PATH": "/absolute/path/to/.agent-memory-store"
150
+ }
151
+ }
152
+ }
153
+ }
154
+ ```
155
+
134
156
  ### Environment variables
135
157
 
136
158
  | Variable | Default | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-memory-store",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Local-first MCP memory server for multi-agent systems. BM25 search, zero external dependencies, file-based persistence.",
5
5
  "type": "module",
6
6
  "exports": "./src/index.js",