MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

AgentRecall MCP Server

by Goldentrii
Developer ToolsLow Risk9.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Correction-first agent memory. Precision KPI tracks if agents heed warnings. 5 layers, local-only.

About

Correction-first agent memory. Precision KPI tracks if agents heed warnings. 5 layers, local-only.

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (2 strong, 2 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

9 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-goldentrii-agent-recall": {
      "args": [
        "-y",
        "agent-recall-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

English · 中文

1. Install the MCP server (Claude Code):

claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp

Generic MCP JSON for other clients:

{ "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }

2. First message of every new session, run the loop:

At the start of a session, call session_start to load context.
When the human corrects you, call remember with type "correction".
At the end of a session, call session_end to compound what you learned.

What & Why

AgentRecall is not a memory tool. It's a learning loop. Memory is the mechanism; understanding is the goal. Every time you correct your agent — "no, not that version", "put this section first", "ask me before you assume" — that correction is stored, weighted, and recalled next time. After 10 sessions your agent doesn't just remember your project; it understands how you think.

  • Correction-first. When you say "no, that's wrong", we log a CorrectionRecord with severity, holder, and evidence. After N confirmations across sessions it auto-promotes to a cross-project insight.
  • Measurable learning loop. Every correction tracks retrieved_count, heeded_count, recurrence_count, precision. The KPI that matters: did the same bug recur after we warned about it?
  • Five memory types. Episodic, semantic, procedural, narrative, correction — mapped to the canonical cognitive-psychology taxonomy (Squire 2004, Tulving 1972).
  • Local markdown only. Everything lives in ~/.agent-recall/. Open it in Obsidian, grep it in the terminal, version it in git. No cloud, no API keys, no lock-in.
  • Backed by published math. FSRS-lite decay (Ebbinghaus → SuperMemo → FSRS-6), Modern Hopfield retrieval (Ramsauer 2020), RRF fusion (Cormack 2009).

The Automaticity Law. Memory only compounds if it's used automatically, not on demand. Measured on the live corpus: push channels (session_start, session_end, correction hooks) show repeated behavior-changing usage, while pull channels had zero organic calls across 44 projects over weeks of real use — including from the agent that built them. That's why only 5 tools ship by default; the two-verb model (inhale/exhale) carries all the compounding value, and everything else is opt-in via --full.

Injection Precision KPI. Every correction tracks precision = heeded / retrieved — of the times we surfaced this warning, how often did the agent actually act on it? precision < 0.3 → archive candidate (noise we should stop injecting). precision ≥ 0.8 → promote faster (high-signal, compound it sooner). This is the measurability claim: a memory system you can prove is working.


Why AgentRecall vs X?

FeatureAgentRecallMem0ZepLetta
Correction tracking + precision KPI✅ Core feature❌❌❌
Behavioral calibration across sessions✅❌❌Partial
Local markdown only (zero cloud)✅❌ cloud❌ cloud❌ cloud
MCP native✅✅✅✅
FSRS-lite decay + Hopfield retrieval✅❌❌❌
Free / open source✅ MITFreemiumFreemiumApache
Works offline✅❌❌Partial

The difference: AgentRecall is the only system that tracks whether the agent actually acted on a warning — not just that it stored one.


Quick Start

Visual setup guide — all 13 clients, copy-paste prompts: open warroom/install.html from the repo (or after unzipping the War Room release) in any browser. No server needed.

MCP Server — for AI agents

# Claude Code
claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp

# Cursor — .cursor/mcp.json
{ "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }

# VS Code — .vscode/mcp.json
{ "servers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }

# Windsurf — ~/.codeium/windsurf/mcp_config.json
{ "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }

# Codex
codex mcp add agent-recall -- npx -y agent-recall-mcp

Skill (Claude Code only):

mkdir -p ~/.claude/skills/agent-recall
curl -o ~/.claude/skills/agent-recall/SKILL.md \
  https://raw.githubusercontent.com/Goldentrii/AgentRecall/main/SKILL.md

SDK & CLI

npm install agent-recall-sdk        # JS/TS apps
npx agent-recall-cli recall "topic" # terminal & CI
import { AgentRecall } from "agent-recall-sdk";
const memory = new AgentRecall({ project: "my-app" });
await memory.capture("What stack?", "Next.js + Postgres");
const ctx = await memory.recall("rate limiting");

5 Memory Layers

The canonical cognitive-psychology taxonomy mapped to your agent's filesystem:

LayerTypeWhat it holdsPath
1EpisodicWhat happened in each session, chronologically. Auto-written during work.journal/
2SemanticTopic-clustered facts with [[wikilinks]]: Architecture, Goals, Blockers.palace/rooms/
3ProceduralIF-THEN production rules — reusable how-tos.palace/skills/
4NarrativeProject phases: Goal → What was hard → How solved → Synthesis.palace/pipeline/
5CorrectionBehavioral calibration: rules the agent must follow, with precision KPIs.corrections/
+AwarenessCross-project insights promoted from N-confirmed corrections — the compounding layer.palace/awareness

All layers share one canonical naming grammar (<scope>/<type>/[<topic>/]<temporal>--<slug>.md) so any agent can compose retrieval paths from intent. Existing files keep working via a legacy_path view — no migration needed.


The Session Loop

CommandWhenWhat it does
🔴 /arstatusFirst — every sessionStatus board across ALL projects: pending work, blockers, relevance scores. Pick by number.
/arstartAfter picking a projectLoad deep context: palace rooms, corrections, task-specific recall.
🔴 /arsaveLast — every sessionWrite journal + palace consolidation + awareness compounding + semantic prefetch.
/arsaveallEnd of day (multi-session)Batch save all parallel sessions — scan, merge, deduplicate, done.
/arbootstrapFirst install / migratingScan your machine for existing projects and import them.

Without /arstatus, a fresh agent has zero orientation. Without /arsave, nothing compounds. These two are the entire loop.


🌙 Dreaming — Nightly Consolidation (optional)

An autonomous overnight agent that runs while you sleep and compounds everything your sessions wrote during the day.

What it doesResult
Mine patterns across all projectsRepeated corrections promote to palace/awareness
Ebbinghaus salience decayLow-signal rooms fade; your palace stays sharp
Journal rollupsEntries >30 days compress into summary rooms
Awareness graduationCorrections confirmed N× times go cross-project
Telegram reportNightly summary: learned · decayed · crystallized

Requires a live Claude Code login. If the session expires, dream skips with a Telegram alert.

# Fix expired login (run this when dreaming stops)
claude login

Dream reports are saved locally to ~/.agent-recall/dreams/YYYY-MM-DD.md.


🖥️ War Room Dashboard — Download & Deploy

A local-first visual dashboard for your memory: an activity calendar, per-project status, corrections, and insights — all rendered from your local ~/.agent-recall/ data. Fully offline (vendored assets), no Node and no build step.

  1. Download ar-warroom-v3.4.30.zip from the latest GitHub Release.
  2. Unzip it, then serve it locally:
cd warroom
python3 -m http.server 8080
  1. Open http://localhost:8080/AgentRecall.html

This is the recommended onboarding for Hermes / OpenClaw / OpenCode users too — one offline page to see everything your agent has learned.


Architecture

TypeScript monorepo, 4 published packages: core (storage + tool logic), mcp-server (thin MCP wrappers), sdk (programmatic API), cli (the ar command). All memory is local markdown under ~/.agent-recall/projects/<slug>/ — journal/, corrections/, and palace/ (rooms, skills, pipeline, awareness). An optional Supabase mirror adds pgvector semantic recall; all-local stays the default.

Platform Compatibility

PlatformMechanismStatus
Claude CodeMCP server + skill + hooks✅ Primary
Cursor · Windsurf · VS Code (Copilot) · CodexMCP server✅
Any JS/TS appSDK (agent-recall-sdk)✅
Terminal / CICLI (ar)✅

Links

  • Full reference → README.full.md
  • Docs → docs/ — command reference, architecture deep-dives
  • Changelog → UPDATE-LOG.md — phase-by-phase evolution + design reasoning
  • Benchmark report → REPORT-2026-05-30.html — Phase 6 visual report
  • Skill → SKILL.md — Claude Code skill definition
  • Community → Telegram · GitHub Issues

Contributing

PRs welcome. Open an issue first for anything substantive — the design is opinionated and grounded in published research; we want changes grounded the same way.

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published June 20, 2026
Version 3.4.31
0 installs
Local Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
518
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
72
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
33
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
20
Installs
10.0
Security
No ratings yet
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
18
Installs
10.0
Security
5.0
Local