claude-mem Install (Cursor)
A concise skill for installing and configuring the claude-mem memory layer on Cursor with either a local or remote worker.
UtilitiesIntermediate★ 93,027⑂ 8,178AI score 8/10Last updated: Sep 2, 2026
What it does
- Gives the exact commands to install
claude-memfor Cursor. - Separates two paths: local worker (default) and remote worker (your own host or cmem.ai).
- Helps pick the observer inference mode: remote (openrouter / cmem.ai) or local host-login (
--provider host). - Points to the MCP endpoints (
claude-mem-local,claude-mem-remote) and theCLAUDE_MEM_MCP_TOKENplugin variable. - Includes operational caveats: port collisions (macOS worker often 37777, shim uses 37778) and never restarting a healthy worker because of its RAM queue.
Who it's for
- Developers using Cursor who want persistent memory across sessions.
- Teams hosting a shared remote worker for multiple machines.
- Privacy-minded users who prefer local host-login inference over external APIs.
Examples
- "Install claude-mem on Cursor" → runs
npx claude-mem install --ide cursorand verifies the local MCP connection. - "Point it at my server https://mem.example.com" → uses
--runtime server --server-url ...and setsCLAUDE_MEM_MCP_TOKEN. - "Use my host login instead of a remote API" → configures
--provider hostwith the loopback shim on port 37778.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/thedotmack/claude-mem/HEAD/claude-mem-cursor/skills/install/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the claude-mem-cursor/skills/install folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/claude-mem-install/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/thedotmack/claude-mem.git && mkdir -p ~/.claude/skills && cp -r claude-mem/claude-mem-cursor/skills/install ~/.claude/skills/claude-mem-install⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and confirm Node.js (with
npx) and Cursor are installed. - Clone the repo:
git clone https://github.com/thedotmack/claude-mem.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-mem/claude-mem-cursor/skills/install ~/.claude/skills/claude-mem-install - Restart Claude Code (or the Claude integration in Cursor) and ask "install claude-mem on Cursor" to trigger the skill.
- Follow the guidance: run
npx claude-mem install --ide cursor, and if using a remote worker, set theCLAUDE_MEM_MCP_TOKENplugin variable.
View source on GitHub ↗License: Apache-2.0