Add: Openmemory Augment support (#3015)

This commit is contained in:
Akshat Jain
2025-06-23 20:45:01 +05:30
committed by GitHub
parent 89499aedbe
commit a5ec286fd4
4 changed files with 9 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ OPENAI_API_KEY=sk-xxx
USER=<user-id>
```
These values define where your MCP server is running and which users memory is accessed.
These values define where your MCP server is running and which user's memory is accessed.
### MCP Client Setup
@@ -38,7 +38,6 @@ Replace `<client-name>` with the desired client name and `<user-id>` with the va
| Client | Command |
|-------------|---------|
| OpenMemory | `npx install-mcp http://localhost:8765/mcp/openmemory/sse/<user-id> --client openmemory` |
| Claude | `npx install-mcp http://localhost:8765/mcp/claude/sse/<user-id> --client claude` |
| Cursor | `npx install-mcp http://localhost:8765/mcp/cursor/sse/<user-id> --client cursor` |
| Cline | `npx install-mcp http://localhost:8765/mcp/cline/sse/<user-id> --client cline` |
@@ -46,6 +45,7 @@ Replace `<client-name>` with the desired client name and `<user-id>` with the va
| Windsurf | `npx install-mcp http://localhost:8765/mcp/windsurf/sse/<user-id> --client windsurf` |
| Witsy | `npx install-mcp http://localhost:8765/mcp/witsy/sse/<user-id> --client witsy` |
| Enconvo | `npx install-mcp http://localhost:8765/mcp/enconvo/sse/<user-id> --client enconvo` |
| Augment | `npx install-mcp http://localhost:8765/mcp/augment/sse/<user-id> --client augment` |
### What This Does