diff --git a/docs/openmemory/integrations.mdx b/docs/openmemory/integrations.mdx index 0c3a3d3d..2159067e 100644 --- a/docs/openmemory/integrations.mdx +++ b/docs/openmemory/integrations.mdx @@ -22,7 +22,7 @@ OPENAI_API_KEY=sk-xxx USER= ``` -These values define where your MCP server is running and which user’s 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 `` with the desired client name and `` with the va | Client | Command | |-------------|---------| -| OpenMemory | `npx install-mcp http://localhost:8765/mcp/openmemory/sse/ --client openmemory` | | Claude | `npx install-mcp http://localhost:8765/mcp/claude/sse/ --client claude` | | Cursor | `npx install-mcp http://localhost:8765/mcp/cursor/sse/ --client cursor` | | Cline | `npx install-mcp http://localhost:8765/mcp/cline/sse/ --client cline` | @@ -46,6 +45,7 @@ Replace `` with the desired client name and `` with the va | Windsurf | `npx install-mcp http://localhost:8765/mcp/windsurf/sse/ --client windsurf` | | Witsy | `npx install-mcp http://localhost:8765/mcp/witsy/sse/ --client witsy` | | Enconvo | `npx install-mcp http://localhost:8765/mcp/enconvo/sse/ --client enconvo` | +| Augment | `npx install-mcp http://localhost:8765/mcp/augment/sse/ --client augment` | ### What This Does diff --git a/openmemory/ui/components/dashboard/Install.tsx b/openmemory/ui/components/dashboard/Install.tsx index 3161021b..a3e77c1d 100644 --- a/openmemory/ui/components/dashboard/Install.tsx +++ b/openmemory/ui/components/dashboard/Install.tsx @@ -14,6 +14,7 @@ const clientTabs = [ { key: "windsurf", label: "Windsurf", icon: "/images/windsurf.png" }, { key: "witsy", label: "Witsy", icon: "/images/witsy.png" }, { key: "enconvo", label: "Enconvo", icon: "/images/enconvo.png" }, + { key: "augment", label: "Augment", icon: "/images/augment.png" }, ]; const colorGradientMap: { [key: string]: string } = { @@ -95,7 +96,7 @@ export const Install = () => { - + {allTabs.map(({ key, label, icon }) => ( , iconImage: "/images/enconvo.png", }, + augment: { + name: "Augment", + icon: , + iconImage: "/images/augment.png", + }, default: { name: "Default", icon: , diff --git a/openmemory/ui/public/images/augment.png b/openmemory/ui/public/images/augment.png new file mode 100644 index 00000000..cbfa5523 Binary files /dev/null and b/openmemory/ui/public/images/augment.png differ