mem-search
Retrieves work from previous sessions in claude-mem using a token-efficient 3-layer search workflow.
UtilitiesIntermediate★ 93,027⑂ 8,178AI score 7/10Last updated: Sep 2, 2026
What it does
- Fires when you ask to search memory, "did we already solve this?", or "how did we do X last time?"
- Enforces a 3-layer flow: ①
search(query)for an ID index → ②timeline(anchor=ID)for nearby context → ③get_observations(ids=[...])for full details of only those IDs. - Prevents dumping full observations before IDs are filtered, keeping context usage low.
- Stamps
platformSourceascursororgrok-boton writes and keeps records from other hosts when reading.
Who it's for
- Users already running (or planning to run) the claude-mem MCP server
- Developers switching between Cursor and other hosts who want one shared memory
- Long-running projects where past decisions must be re-found quickly
Examples
- "How did we fix that CORS error before?" → search for IDs, then pull only the relevant observation.
- "Did we discuss refactoring the payments module?" → search, then timeline for surrounding context.
- Query both Cursor and other host records together for a complete work history.
Prerequisite: the claude-mem MCP must be installed; otherwise run
npx claude-mem install --ide <host>first.
· · · 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/mem-search/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/mem-search folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/thedotmack-mem-search-2/. 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/mem-search ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- 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/mem-search ~/.claude/skills/ - Install the MCP server:
npx claude-mem install --ide cursor(adjust--idefor your host). - Restart Claude Code or Cursor, then ask "how did we solve this last time?" to verify it triggers.
View source on GitHub ↗License: Apache-2.0