AI Skill Hub 推荐使用:回忆巢 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
回忆巢 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
回忆巢 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/AliceLJY/recallnest
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"---": {
"command": "npx",
"args": ["-y", "recallnest"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 回忆巢 执行以下任务... Claude: [自动调用 回忆巢 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"___": {
"command": "npx",
"args": ["-y", "recallnest"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
```bash npx recallnest --help # run directly
```bash git clone https://github.com/AliceLJY/recallnest.git cd recallnest bun install cp config.json.example config.json cp .env.example .env
| Capability | Description |
|---|---|
| **CC Plugin** | Install in Claude Code with one command — no manual config |
| **Shared Index** | One LanceDB store for Claude Code, Codex, and Gemini CLI |
| **Dual Interface** | MCP (stdio) for CLI tools + HTTP API for custom agents |
| **One-Click Setup** | Integration scripts install MCP access and continuity rules |
Examples live in integrations/examples/:
| Framework | Example | Language |
|---|---|---|
| [Claude Agent SDK](integrations/examples/claude-agent-sdk/) | memory-agent.ts | TypeScript |
| [OpenAI Agents SDK](integrations/examples/openai-agents-sdk/) | memory-agent.py | Python |
| [LangChain](integrations/examples/langchain/) | memory-chain.py | Python |
---
<details> <summary><strong>MCP Tools (41 tools)</strong></summary>
| Tool | Description |
|---|---|
workflow_observe | Store an append-only workflow observation outside regular memory |
workflow_health | Inspect workflow observation health or show a degraded-workflow dashboard |
workflow_evidence | Build an evidence pack for a workflow primitive |
store_memory | Store a durable memory for future windows |
store_workflow_pattern | Store a reusable workflow as durable patterns memory |
store_case | Store a reusable problem-solution pair as durable cases memory |
promote_memory | Explicitly promote evidence into durable memory |
list_conflicts | List or inspect promotion conflict candidates |
audit_conflicts | Summarize stale/escalated conflict priorities |
escalate_conflicts | Preview or apply conflict escalation metadata |
resolve_conflict | Resolve a stored conflict candidate (keep / accept / merge) |
checkpoint_session | Store the current active work state outside durable memory |
latest_checkpoint | Inspect the latest saved checkpoint by session or scope |
resume_context | Compose startup context for a fresh window |
search_memory | Proactive recall at task start |
explain_memory | Explain why memories matched |
distill_memory | Distill results into a compact briefing |
brief_memory | Create a structured brief and re-index it |
pin_memory | Promote a scoped memory into a pinned asset |
export_memory | Export a distilled memory briefing to disk |
list_pins | List pinned memories |
list_assets | List all structured assets |
list_dirty_briefs | Preview outdated brief assets created before the cleanup rules |
clean_dirty_briefs | Archive dirty brief assets and remove their indexed rows |
memory_stats | Show index statistics |
memory_drill_down | Inspect a specific memory entry with full metadata and provenance |
auto_capture | Heuristically extract and store memory signals from text (zero LLM calls) |
set_reminder | Set a prospective memory reminder to surface in a future session |
consolidate_memories | Cluster near-duplicate memories and merge them (dry-run by default) |
store_skill | Store an executable skill with trigger conditions and verification |
retrieve_skill | Retrieve matching executable skills by semantic similarity |
scan_skill_promotions | Scan cases/patterns for promotion candidates to skills |
list_tools | Discover available tools by tier (core/advanced/full) |
batch_store | Store up to 20 memories in a single call with dedup |
distill_session | Distill a conversation into structured knowledge via 3-layer pipeline |
import_conversations | Import conversations from Claude Code, ChatGPT, Slack, and more |
data_checkup | Run data quality health checks on the memory store |
dream | Run offline memory consolidation (clustering, merging, pruning) |
memory_lint | Run memory quality checks: contradictions, duplicates, stale entries, orphans |
forget_memory | Cascade-delete a memory with KG cleanup, pin archival, and audit trail |
export_graph | Export memories as an interactive HTML knowledge graph |
</details>
<details> <summary><strong>HTTP API (21 endpoints)</strong></summary>
Base URL: http://localhost:4318
| Endpoint | Method | Description |
|---|---|---|
/v1/recall | POST | Quick semantic search |
/v1/store | POST | Store a new memory |
/v1/capture | POST | Store multiple structured memories |
/v1/pattern | POST | Store a structured workflow pattern |
/v1/case | POST | Store a structured problem-solution case |
/v1/promote | POST | Promote evidence into durable memory |
/v1/conflicts | GET | List or inspect promotion conflict candidates |
/v1/conflicts/audit | GET | Summarize stale/escalated conflict priorities |
/v1/conflicts/escalate | POST | Preview or apply conflict escalation metadata |
/v1/conflicts/resolve | POST | Resolve a stored conflict candidate (keep / accept / merge) |
/v1/checkpoint | POST | Store the current work checkpoint |
/v1/workflow-observe | POST | Store a workflow observation outside durable memory |
/v1/checkpoint/latest | GET | Fetch the latest checkpoint by session or scope |
/v1/workflow-health | GET | Inspect workflow health or return a degraded-workflow dashboard |
/v1/workflow-evidence | GET | Build a workflow evidence pack from recent issue observations |
/v1/resume | POST | Compose startup context for a fresh window |
/v1/search | POST | Advanced search with full metadata |
/v1/stats | GET | Memory statistics |
/v1/lint | GET | Memory quality lint report |
/v1/health | GET | Health check |
Full documentation: docs/api-reference.md
</details>
<details> <summary><strong>CLI Commands</strong></summary>
```bash
/plugin marketplace add AliceLJY/recallnest
/plugin install recallnest@AliceLJY
RecallNest starts automatically with Claude Code. No manual MCP config needed.
Requires: Bun (recommended) or Node.js 18+. Dependencies install on first start.
```
```
RecallNest serves two interfaces:
bun run src/cli.ts workflow-observe resume_context "Fresh window skipped continuity recovery." --outcome missed --scope project:recallnest bun run src/cli.ts workflow-health resume_context --scope project:recallnest bun run src/cli.ts workflow-evidence checkpoint_session --scope project:recallnest
环境依赖与系统要求
RecallNest API
工作流程观察
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,回忆巢 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | recallnest |
| 原始描述 | 开源MCP工具:One memory, three terminals. Shared memory layer for Claude Code, Codex, and Gem。⭐14 · TypeScript |
| Topics | mcpai-agentai-memoryclaude-codecodexgeminitypescript |
| GitHub | https://github.com/AliceLJY/recallnest |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-26 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端