agentmemory-mcp-tools

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
agentmemory exposes its full capability set as MCP tools. This skill is the index: it tells you which tool to reach for and where to find exact parameters.
agentmemory通过MCP工具开放其全部功能。本技能作为索引,将告诉你应选用哪个工具以及如何找到具体参数。

Quick start

快速开始

Save then recall:
  1. memory_save
    with
    content
    (the insight),
    concepts
    (comma-separated keywords),
    files
    (comma-separated paths).
  2. memory_smart_search
    with
    query
    and
    limit
    to retrieve it later. This runs hybrid BM25 plus vector plus graph-expanded search.
保存并召回:
  1. 使用
    memory_save
    ,传入
    content
    (待存储的信息)、
    concepts
    (逗号分隔的关键词)、
    files
    (逗号分隔的文件路径)。
  2. 后续使用
    memory_smart_search
    ,传入
    query
    limit
    来检索内容。该工具会运行BM25混合检索、向量检索以及图扩展检索。

Tool families

工具分类

  • Capture:
    memory_save
    ,
    memory_observe
    flows,
    memory_compress_file
    .
  • Retrieve:
    memory_smart_search
    ,
    memory_recall
    ,
    memory_file_history
    ,
    memory_timeline
    ,
    memory_vision_search
    .
  • Sessions and commits:
    memory_sessions
    ,
    memory_commits
    ,
    memory_commit_lookup
    .
  • Knowledge and graph:
    memory_lesson_save
    ,
    memory_lesson_recall
    ,
    memory_graph_query
    ,
    memory_relations
    ,
    memory_patterns
    ,
    memory_crystallize
    .
  • Structured slots:
    memory_slot_create
    ,
    memory_slot_append
    ,
    memory_slot_get
    ,
    memory_slot_list
    ,
    memory_slot_replace
    ,
    memory_slot_delete
    .
  • Governance and health:
    memory_governance_delete
    ,
    memory_audit
    ,
    memory_verify
    ,
    memory_heal
    ,
    memory_diagnose
    .
  • 捕获类:
    memory_save
    memory_observe
    流程、
    memory_compress_file
  • 检索类:
    memory_smart_search
    memory_recall
    memory_file_history
    memory_timeline
    memory_vision_search
  • 会话与提交类:
    memory_sessions
    memory_commits
    memory_commit_lookup
  • 知识与图谱类:
    memory_lesson_save
    memory_lesson_recall
    memory_graph_query
    memory_relations
    memory_patterns
    memory_crystallize
  • 结构化槽位类:
    memory_slot_create
    memory_slot_append
    memory_slot_get
    memory_slot_list
    memory_slot_replace
    memory_slot_delete
  • 治理与健康类:
    memory_governance_delete
    memory_audit
    memory_verify
    memory_heal
    memory_diagnose

Workflow

工作流程

  1. Pick the narrowest tool for the task. Prefer
    memory_smart_search
    for open recall,
    memory_recall
    when you already have a focused query,
    memory_sessions
    for session listings.
  2. Look up exact parameter names and which are required in REFERENCE.md before calling.
  3. Pass only documented fields. REST handlers whitelist fields and drop unknown ones.
  1. 为任务选择最贴合的工具。开放式召回优先使用
    memory_smart_search
    ,已有明确查询条件时使用
    memory_recall
    ,会话列表查询使用
    memory_sessions
  2. 在调用工具前,前往REFERENCE.md查看确切的参数名称及必填项。
  3. 仅传入文档中记载的字段。REST处理程序会白名单过滤字段,丢弃未知字段。

See also

相关链接

  • agentmemory-rest-api for the HTTP equivalents.
  • agentmemory-config for tool-visibility and feature flags.
  • The user-invocable action skills (remember, recall, recap, handoff, forget) wrap the most common tools.
  • agentmemory-rest-api:对应HTTP接口。
  • agentmemory-config:工具可见性及功能开关配置。
  • 用户可调用的动作技能(remember、recall、recap、handoff、forget)封装了最常用的工具。

Reference

参考文档

Full tool table with parameters and the core-set marking lives in REFERENCE.md, generated from source so it never drifts.
包含参数及核心集标记的完整工具表位于REFERENCE.md,该文档由源码生成,确保内容不会与实际功能脱节。