AI Skill Hub 推荐使用:开源MCP工具:Multi-tiered memory and knowledge base plugin 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Multi-tiered memory and knowledge base plugin for TUI coding assistants(Claude),提供高效的知识库管理和自动完成功能。
开源MCP工具:Multi-tiered memory and knowledge base plugin 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Multi-tiered memory and knowledge base plugin for TUI coding assistants(Claude),提供高效的知识库管理和自动完成功能。
开源MCP工具:Multi-tiered memory and knowledge base plugin 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/strvmarv/total-recall
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp---multi-tiered-memory-and-knowledge-base-plugin": {
"command": "npx",
"args": ["-y", "total-recall"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 开源MCP工具:Multi-tiered memory and knowledge base plugin 执行以下任务... Claude: [自动调用 开源MCP工具:Multi-tiered memory and knowledge base plugin MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp___multi-tiered_memory_and_knowledge_base_plugin": {
"command": "npx",
"args": ["-y", "total-recall"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
╔══════════════════════════════════════════════╗
║ REKALL INC. -- MEMORY IMPLANT SYSTEM v2.84 ║
╠══════════════════════════════════════════════╣
║ ║
║ CLIENT: Quaid, Douglas ║
║ STATUS: MEMORY EXTRACTION IN PROGRESS ║
║ ║
║ > Loading tier: PINNED ......... [OK] ║
║ > Loading tier: HOT ............ [OK] ║
║ > Loading tier: WARM ........... [OK] ║
║ > Loading tier: COLD ........... [OK] ║
║ > Semantic index: 384 dimensions [OK] ║
║ > Vector search: ONLINE ║
║ ║
║ ┌──────────────────────────────────┐ ║
║ │ SELECT PACKAGE: │ ║
║ │ │ ║
║ │ [x] Total Recall -- $899 │ ║
║ │ [ ] Blue Sky on Mars │ ║
║ │ [ ] Secret Agent │ ║
║ └──────────────────────────────────┘ ║
║ ║
║ "For the Memory of a Lifetime" ║
╚══════════════════════════════════════════════╝
Full skill content here... ```
A bundle (directory with supporting files) uses the same frontmatter in its SKILL.md, and can include scripts, templates, or reference files alongside it.
Merge behavior: When Cortex is configured and reachable, the session context block merges cortex-stored skills with locally-scanned extra_dirs skills, deduplicating by name (Cortex entries take precedence). When Cortex is unavailable or not configured, only local skills appear.
---
These apply only if you're building from source. The prebuilt binary is self-contained — no .NET runtime, no system SQLite, no Bun required.
global.json at the repo root; builds the net8.0 NativeAOT targetnpm ci, which pulls sqlite-vec native libs needed by the csproj copy targetssh scripts/fetch-bge-small.sh once to fetch + sha256-verify the bge-small-en-v1.5 ONNX model (~133 MB) into models/bge-small-en-v1.5/. The model is no longer committed to the repo (not in Git LFS); release builds fetch and bundle it into the per-RID artifact.---
Install the total-recall memory plugin: fetch and follow the instructions at https://raw.githubusercontent.com/strvmarv/total-recall/main/INSTALL.md
That's it. Your AI assistant will read the instructions and install total-recall for its platform.
```bash git clone https://github.com/strvmarv/total-recall.git cd total-recall sh scripts/fetch-bge-small.sh # fetch + sha256-verify the ONNX model (~133 MB) npm ci # pulls sqlite-vec native libs into node_modules/ dotnet build src/TotalRecall.sln dotnet test src/TotalRecall.sln --filter "Category!=Integration" # ~1000 tests dotnet publish src/TotalRecall.Host/TotalRecall.Host.csproj -c Release -r win-x64 -p:PublishAot=true
The config file lives at ~/.total-recall/config.toml. All fields have defaults — you only need to override what you want to change.
```toml
[tiers.pinned] max_content_chars = 500 # Max characters per pinned entry (oversize rejected, never truncated) floor_enabled = true # Per-turn pinned-directive floor (UserPromptSubmit re-injection) floor_every_n_turns = 6 # Re-inject the pinned block at least every N user turns floor_growth_tokens = 6000 # ...or after ~this many tokens of transcript growth (whichever trips first)
[tiers.hot] max_entries = 50 # Max entries auto-injected per prompt token_budget = 4000 # Max tokens for hot tier injection (pinned tokens come off the top) carry_forward_threshold = 0.7 # Score threshold to stay in hot
[tiers.warm] max_entries = 10000 # Max entries in warm tier retrieval_top_k = 5 # Results returned per search similarity_threshold = 0.65 # Min cosine similarity for retrieval cold_decay_days = 30 # Days before unused warm entries decay to cold
[tiers.cold] chunk_max_tokens = 512 # Max tokens per knowledge base chunk chunk_overlap_tokens = 50 # Overlap between adjacent chunks lazy_summary_threshold = 5 # Accesses before generating summary
[compaction] decay_half_life_hours = 168 # Score half-life (168h = 1 week) warm_threshold = 0.3 # Score below which warm→cold promote_threshold = 0.7 # Score above which cold→warm warm_sweep_interval_days = 7 # How often to run warm sweep
[search] fts_weight = 0.3 # BM25 weight in hybrid ranking (0.0 = vector only, 1.0 = FTS only)
[scope] default = "user" # Default scope for new entries (e.g., "user", "team")
[usage] initial_backfill_days = 30 # Days of usage history to backfill on first sync
[regression] miss_rate_delta = 0.1 # Alert if miss rate increased by this much vs. previous snapshot latency_ratio = 2.0 # Alert if latency increased by this factor vs. previous snapshot min_events = 20 # Minimum retrieval events required before regression check runs
[embedding] model = "bge-small-en-v1.5" # Embedding model name dimensions = 384 # Embedding dimensions
```
Relocating the database: set TOTAL_RECALL_DB_PATH to an absolute path or ~/-prefixed path. See INSTALL.md for cloud-sync and shared-workspace guidance.
Switching to Postgres: uncomment the [storage] section with your connection string. The binary auto-detects the backend — no code changes, no flag. Pair with [embedding] provider = "bedrock" or "openai" for remote embeddings. Run migrate_to_remote to copy local memories to the shared database with re-embedding.
The MCP server exposes 41 core tools in every backend mode; local SQLite and Cortex modes add usage, cache, and skill tools (48 and 49 total, respectively). All tool names follow the pattern <domain>_<action>.
| Category | Tools |
|---|---|
| Session | session_start, session_end, session_context, session_refresh |
| Memory | memory_store, memory_get, memory_get_all, memory_update, memory_delete, memory_inspect, memory_search, memory_list, memory_recent, memory_extract |
| Tier management | memory_promote, memory_demote, memory_pin, memory_unpin, memory_history, memory_lineage |
| Import / Export | memory_export, memory_import, import_host |
| Knowledge base | kb_ingest_file, kb_ingest_dir, kb_search, kb_list_collections, kb_refresh, kb_remove, kb_summarize, kb_resolve |
| Compaction | compact_now |
| Eval | eval_report, eval_benchmark, eval_compare, eval_snapshot, eval_grow |
| Config | config_get, config_set |
| Status & Usage | status, usage_status† |
| Cache | cache_check†, cache_store† |
| Migration | migrate_to_remote |
| Skills† | skill_search, skill_get, skill_list, skill_import_host, skill_delete *(skill_delete: Cortex mode only)* |
†Unavailable in Postgres mode (local SQLite + Cortex modes only).
Pinned tier surface: memory_pin moves any entry into the pinned tier (with optional scope: "project" | "global"); memory_unpin releases it to warm; memory_store accepts pinned: true to store-and-pin new content; memory_promote / memory_demote reject pinned as source or target. pinned is accepted in the tier filters of memory_search, memory_list, memory_recent, memory_export, and memory_get_all, and status reports pinned counts.
Handler implementations live in src/TotalRecall.Server/Handlers/<ToolName>Handler.cs. Tool wiring: src/TotalRecall.Server/ServerComposition.cs → BuildRegistry().
---
该项目提供了一个开源的MCP工具,支持多层次内存和知识库管理,适合用于TUI编码辅助器的开发。虽然该项目有潜在的应用价值,但仍需要进一步的开发和测试来确保其稳定性和可靠性。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,开源MCP工具:Multi-tiered memory and knowledge base plugin 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | total-recall |
| Topics | ai-codingclaude-codecopilot-cliknowledge-basemcpc# |
| GitHub | https://github.com/strvmarv/total-recall |
| License | MIT |
| 语言 | C# |
收录时间:2026-06-14 · 更新时间:2026-06-14 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端