Add: Openmemory Augment support (#3015)
This commit is contained in:
@@ -22,7 +22,7 @@ OPENAI_API_KEY=sk-xxx
|
||||
USER=<user-id>
|
||||
```
|
||||
|
||||
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 `<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
|
||||
|
||||
|
||||
@@ -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 = () => {
|
||||
</div>
|
||||
|
||||
<Tabs defaultValue="claude" className="w-full">
|
||||
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-8">
|
||||
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-9">
|
||||
{allTabs.map(({ key, label, icon }) => (
|
||||
<TabsTrigger
|
||||
key={key}
|
||||
|
||||
@@ -51,6 +51,11 @@ export const constants = {
|
||||
icon: <Icon source="/images/enconvo.png" />,
|
||||
iconImage: "/images/enconvo.png",
|
||||
},
|
||||
augment: {
|
||||
name: "Augment",
|
||||
icon: <Icon source="/images/augment.png" />,
|
||||
iconImage: "/images/augment.png",
|
||||
},
|
||||
default: {
|
||||
name: "Default",
|
||||
icon: <BiEdit size={18} className="ml-1" />,
|
||||
|
||||
BIN
openmemory/ui/public/images/augment.png
Normal file
BIN
openmemory/ui/public/images/augment.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
Reference in New Issue
Block a user