memory-plugin
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@memory-pluginremember I like terse responses"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
memory-plugin
Hermes-style bounded, curated persistent memory for Claude Code.
Two files persist across sessions and are injected into context at session start:
File ( | Purpose | Limit |
| Agent notes — environment, conventions, completed work | 2,200 chars |
| User profile — preferences, style, habits | 1,375 chars |
How it maps to Claude Code
Hermes feature | Here |
Inject memory at session start (frozen snapshot) |
|
| MCP server |
Char limits + "memory full" error | Enforced in the MCP server |
Substring matching for replace/remove |
|
Duplicate prevention | Exact-match no-op on add |
Security scanning |
|
Background self-improvement review (memory only) |
|
Correction detector |
|
Skill capture (procedural memory) | Always-on policy injected at session start — agent writes |
The model decides what to save via skills/memory/SKILL.md; the server enforces how.
Related MCP server: Claude Memory Server
Three learning loops
Modeled on the real pi-hermes-memory
implementation (which splits learning into separate loops on purpose):
Background review (memory) —
Stophook fires a detachedclaude -pthat mines the finished turn for durable facts/preferences/corrections and saves them via the memory tools. It is explicitly forbidden from writing skills — a stale subprocess with only a transcript snapshot would author bad procedures. Opt-in (token cost).Correction detector —
UserPromptSubmithook runs a free, two-pass regex over each prompt (strong patterns always fire; weak patterns need a following directive word; negative patterns suppress). On a hit it nudges the agent to persist the lesson before answering. Detection is pure regex — no LLM call.Skill capture (procedural) — done inline by the main agent, never in a subprocess. The session-start policy tells it to write a structured
SKILL.md(## When to Use / ## Procedure / ## Pitfalls / ## Verification) to~/.claude/skills/(portable) or.claude/skills/(repo-specific) the moment it finishes a complex, reusable workflow — while it still has full context. Claude Code's native skill discovery then handles progressive disclosure.
The Curator (skill lifecycle)
Ports Hermes' active → stale (30d) → archived (90d) aging so captured skills don't
pile up forever.
Use signal — a
PostToolUsehook on theSkilltool records real invocations into a.last-usedsidecar (scripts/track-skill-use.mjs). "Last used" ismax(.last-used, SKILL.md mtime, dir mtime), so a skill that's invoked but never edited isn't falsely aged out, and a fresh skill is never stale.Weekly sweep — a
SessionStarthook (scripts/curate.mjs) throttled to once per 7 days via a sentinel. Approximates Hermes' "every 7 days after idle" without a daemon.Safety — notify-only by default: it reports stale/archivable skills in the session context and only moves files when
MEMORY_CURATOR_ARCHIVE=1.pinned: truein frontmatter is never touched. Archiving moves (never deletes) into~/.claude/skills/.archive/and is fully reversible.
Install (as a Claude Code plugin)
This repo is also a single-plugin marketplace (.claude-plugin/marketplace.json),
so installation is two slash commands inside Claude Code. There is no build or
npm install step — the MCP server is zero-dependency.
/plugin marketplace add alexanderop/claude-code-memory
/plugin install memory@memorymarketplace add <owner>/<repo>registers this GitHub repo as a marketplace.install <plugin>@<marketplace>— both are namedmemoryhere (plugin namememory, marketplace namememory).
Claude Code copies the plugin into ~/.claude/plugins/cache and resolves
${CLAUDE_PLUGIN_ROOT} automatically, so the bundled MCP server and hooks just
work. They activate on the next turn — run /reload-plugins to pick them up
without restarting. Verify with /plugin (shows memory enabled) and /mcp
(shows the memory server with its memory_* tools).
Non-interactive / team install
Declare it in .claude/settings.json (project) or ~/.claude/settings.json (global):
{
"extraKnownMarketplaces": {
"memory": { "source": { "source": "github", "repo": "alexanderop/claude-code-memory" } }
},
"enabledPlugins": { "memory@memory": true }
}Local development
Point the marketplace at a local checkout instead of GitHub:
/plugin marketplace add ~/Projects/memory-plugin
/plugin install memory@memoryBackground review (optional)
Off by default — it spawns a headless claude -p after each turn and costs tokens.
Enable by exporting MEMORY_REVIEW_ENABLED=1 in the environment Claude Code runs in.
It is recursion-guarded (MEMORY_REVIEW=1 on the child) and never blocks the turn.
Config (env vars)
Var | Default | Effect |
|
| Where the two files live |
|
|
|
|
|
|
| unset |
|
|
| Skills dir the Curator manages |
| unset |
|
|
| Unused-days before a skill is "stale" |
|
| Unused-days before a skill is archivable |
|
| Min days between Curator sweeps |
Testing
Layered by cost, zero dev dependencies (plain Node — no Bun, no npm install):
npm test # unit + integration — zero token, ~1s, run on every edit
npm run test:unit # manifests, skill frontmatter, and the store/security/correction/curator modules
npm run test:integration # version consistency, hook wiring, MCP path, markdown links, real MCP stdio round-trip
npm run test:e2e # model-backed: loads the plugin via `claude --plugin-dir` (~$0.01, needs auth)The unit suite exercises the real logic modules against temp dirs (never your
~/.claude); the integration suite spawns the actual MCP server and drives it
over JSON-RPC. See docs/testing-strategy.md for the
full layout and CI policy.
Not included (vs Hermes)
Write-approval gating — add a
PreToolUsehook matchingmcp__memory__memory_*that returns{"permissionDecision":"ask"}(or stages to a pending file).Session search — Claude Code already ships a
conversation-searchskill over~/.claude/projects/*/*.jsonl; no FTS5 server needed.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexanderop/claude-code-memory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server