Skip to content

Commit a5ec286

Browse files
authored
Add: Openmemory Augment support (mem0ai#3015)
1 parent 89499ae commit a5ec286

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

docs/openmemory/integrations.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OPENAI_API_KEY=sk-xxx
2222
USER=<user-id>
2323
```
2424

25-
These values define where your MCP server is running and which users memory is accessed.
25+
These values define where your MCP server is running and which user's memory is accessed.
2626

2727
### MCP Client Setup
2828

@@ -38,14 +38,14 @@ Replace `<client-name>` with the desired client name and `<user-id>` with the va
3838

3939
| Client | Command |
4040
|-------------|---------|
41-
| OpenMemory | `npx install-mcp http://localhost:8765/mcp/openmemory/sse/<user-id> --client openmemory` |
4241
| Claude | `npx install-mcp http://localhost:8765/mcp/claude/sse/<user-id> --client claude` |
4342
| Cursor | `npx install-mcp http://localhost:8765/mcp/cursor/sse/<user-id> --client cursor` |
4443
| Cline | `npx install-mcp http://localhost:8765/mcp/cline/sse/<user-id> --client cline` |
4544
| RooCline | `npx install-mcp http://localhost:8765/mcp/roocline/sse/<user-id> --client roocline` |
4645
| Windsurf | `npx install-mcp http://localhost:8765/mcp/windsurf/sse/<user-id> --client windsurf` |
4746
| Witsy | `npx install-mcp http://localhost:8765/mcp/witsy/sse/<user-id> --client witsy` |
4847
| Enconvo | `npx install-mcp http://localhost:8765/mcp/enconvo/sse/<user-id> --client enconvo` |
48+
| Augment | `npx install-mcp http://localhost:8765/mcp/augment/sse/<user-id> --client augment` |
4949

5050
### What This Does
5151

openmemory/ui/components/dashboard/Install.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const clientTabs = [
1414
{ key: "windsurf", label: "Windsurf", icon: "/images/windsurf.png" },
1515
{ key: "witsy", label: "Witsy", icon: "/images/witsy.png" },
1616
{ key: "enconvo", label: "Enconvo", icon: "/images/enconvo.png" },
17+
{ key: "augment", label: "Augment", icon: "/images/augment.png" },
1718
];
1819

1920
const colorGradientMap: { [key: string]: string } = {
@@ -95,7 +96,7 @@ export const Install = () => {
9596
</div>
9697

9798
<Tabs defaultValue="claude" className="w-full">
98-
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-8">
99+
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-9">
99100
{allTabs.map(({ key, label, icon }) => (
100101
<TabsTrigger
101102
key={key}

openmemory/ui/components/shared/source-app.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ export const constants = {
5151
icon: <Icon source="/images/enconvo.png" />,
5252
iconImage: "/images/enconvo.png",
5353
},
54+
augment: {
55+
name: "Augment",
56+
icon: <Icon source="/images/augment.png" />,
57+
iconImage: "/images/augment.png",
58+
},
5459
default: {
5560
name: "Default",
5661
icon: <BiEdit size={18} className="ml-1" />,
3.96 KB
Loading

0 commit comments

Comments
 (0)