Skip to content

Commit eb24b92

Browse files
Add : Openmemory Local Support using New Library (mem0ai#3014)
Co-authored-by: Saket Aryan <[email protected]>
1 parent a5ec286 commit eb24b92

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/openmemory/integrations.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ These values define where your MCP server is running and which user's memory is
2626

2727
### MCP Client Setup
2828

29-
Use the `install-mcp` utility to connect a client. The general command format is as follows:
29+
Use the following one step command to configure OpenMemory Local MCP to a client. The general command format is as follows:
3030

3131
```bash
32-
npx install-mcp http://localhost:8765/mcp/<client-name>/sse/<user-id> --client <client-name>
32+
npx @openmemory/install local http://localhost:8765/mcp/<client-name>/sse/<user-id> --client <client-name>
3333
```
3434

3535
Replace `<client-name>` with the desired client name and `<user-id>` with the value specified in your environment variables.

docs/openmemory/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ pnpm dev
150150
You can configure the MCP client using the following command (replace username with your username):
151151

152152
```bash
153-
npx install-mcp i "http://localhost:8765/mcp/cursor/sse/username" --client cursor
153+
npx @openmemory/install local "http://localhost:8765/mcp/cursor/sse/username" --client cursor
154154
```
155155

156156
The OpenMemory dashboard will be available at http://localhost:3000. From here, you can view and manage your memories, as well as check connection status with your MCP clients.

openmemory/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ pnpm dev
9898

9999
### MCP Client Setup
100100

101-
Use the `install-mcp` utility to connect a client. The general command format is as follows:
101+
Use the following one step command to configure OpenMemory Local MCP to a client. The general command format is as follows:
102102

103103
```bash
104-
npx install-mcp http://localhost:8765/mcp/<client-name>/sse/<user-id> --client <client-name>
104+
npx @openmemory/install local http://localhost:8765/mcp/<client-name>/sse/<user-id> --client <client-name>
105105
```
106106

107107
Replace `<client-name>` with the desired client name and `<user-id>` with the value specified in your environment variables.

openmemory/ui/components/dashboard/Install.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const Install = () => {
5252
const handleCopy = async (tab: string, isMcp: boolean = false) => {
5353
const text = isMcp
5454
? `${URL}/mcp/openmemory/sse/${user}`
55-
: `npx install-mcp ${URL}/mcp/${tab}/sse/${user} --client ${tab}`;
55+
: `npx @openmemory/install local ${URL}/mcp/${tab}/sse/${user} --client ${tab}`;
5656

5757
try {
5858
// Try using the Clipboard API first
@@ -168,7 +168,7 @@ export const Install = () => {
168168
<div className="relative">
169169
<pre className="bg-zinc-800 px-4 py-3 rounded-md overflow-x-auto text-sm">
170170
<code className="text-gray-300">
171-
{`npx install-mcp ${URL}/mcp/${key}/sse/${user} --client ${key}`}
171+
{`npx @openmemory/install local ${URL}/mcp/${key}/sse/${user} --client ${key}`}
172172
</code>
173173
</pre>
174174
<div>

0 commit comments

Comments
 (0)