You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Windows PowerShell installer (install.ps1) for one-line installation
- Centralized config-templates/ folder with platform-specific configs
- Cross-platform config generator (scripts/generate-config.py)
- Windows cmd /c wrapper support for proper process spawning
- Updated MCP SDK version constraint to v1.22-2.0 for stability
- Logging configuration to prevent stdout corruption in STDIO mode
This privacy-first, self-hosted MCP server helps you organize chat history, summarize messages, search across past chats with AI — and keeps everything secure and fully under your control.
10
10
</p>
@@ -32,105 +32,122 @@ Transform your Claude conversations into a searchable, organized knowledge base
32
32
***🎯 Effortless Organization** - Smart tags and folders that organize themselves around your workflow
33
33
***🔗 Intelligent Merging** - Automatically combines related conversations while eliminating duplicates
34
34
35
-
## What's new in v2.3.6
35
+
## What's new in v2.3.7
36
36
37
-
```text
38
-
Google Antigravity IDE Support:
37
+
```text
38
+
Cross-Platform Support & MCP Compliance:
39
39
40
-
- Added Google Antigravity configuration template (.antigravity/mcp_config.json)
40
+
- Windows PowerShell installer (install.ps1) for one-line installation
41
+
- Centralized config-templates/ folder with platform-specific configs
> **Note:** Antigravity requires absolute paths. Replace `</path/to/memcord>` with your actual installation path.
167
-
168
-
See `.antigravity/mcp_config.json` for a template.
178
+
> **Note:** Antigravity requires absolute paths.
169
179
170
180
<imgalt="Anti-Gravity screenshot with memcord"src="assets/image/anti-gravity.png">
171
181
172
-
### Claude Code MCP (🧪 BETA)
182
+
### Claude Code CLI
173
183
174
-
Add MCP server for your project - check README.md for installation path
184
+
The installer creates `.mcp.json` in the project root. Or add manually:
175
185
176
186
```bash
177
-
claude mcp add-json memcord '{"type":"stdio","command":"uv","args":["--directory","</path/to/memcord>","run","memcord"],"env":{"PYTHONPATH":"</path/to/memcord>/src"}}'
187
+
claude mcp add-json memcord '{"type":"stdio","command":"uv","args":["--directory","/path/to/memcord","run","memcord"],"env":{"PYTHONPATH":"/path/to/memcord/src"}}'
178
188
```
179
189
180
-
Verify installation
190
+
**Windows users:** Use `cmd` wrapper:
191
+
```powershell
192
+
claude mcp add-json memcord '{"type":"stdio","command":"cmd","args":["/c","uv","--directory","C:\\path\\to\\memcord","run","memcord"],"env":{"PYTHONPATH":"C:\\path\\to\\memcord\\src"}}'
0 commit comments