Integration Quickstart
The shortest path from "I have an agent environment" to "Agentic Memory is installed, configured, and verified."
Hermes Agent
The Hermes plugin installs a memory provider and context engine that connect Hermes sessions to an Agentic Memory backend. It exposes 28 model-callable tools and uses canonical /v1/* backend routes by default.
Prerequisites
- An Agentic Memory API key from /account
- Hermes Agent installed and accessible on your PATH
uvxavailable (bundled withuv)
1. Install the plugin
uvx agentic-memory-hermes install --forceIf you previously installed an older version, force uv to refresh:
uvx --refresh-package agentic-memory-hermes agentic-memory-hermes install --forceThis single command copies the memory provider and context engine into Hermes' plugin tree and runs:
hermes config set memory.provider agentic-memoryhermes config set context.engine agentic-memory
2. Configure credentials
Add your API key to the Hermes .env file:
AGENTIC_MEMORY_API_KEY=your-account-api-keyNon-secret config lives at $HERMES_HOME/agentic-memory.json and is written by hermes memory setup.
3. Verify
Start a Hermes session. The provider exposes these tools to the model:
agentic_memory_search— relevance retrieval across conversations, research, and codeagentic_memory_projects— list known project and repo IDsagentic_memory_read— read a canonical memory resultagentic_memory_context— resolve compact context for the current task- 24 passthrough tools:
search_codebase,get_file_dependencies,trace_execution_path,search_conversations, memory graph CRUD, project scoping, and more
Forbidden tools (raw deletes, diagnostics, graph schema queries, Brave search, research scheduling) are never exposed to the model.
OpenClaw
The OpenClaw plugin gives your agent persistent memory without changing how you work. Capture turns, search past context, and optionally augment prompts.
Prerequisites
- An Agentic Memory backend that is reachable
- A bearer token from
AM_SERVER_API_KEYS - An OpenClaw host version compatible with the plugin package
1. Install the plugin
openclaw plugin install agentic-memory-openclawImportant identity split:
- npm package name:
agentic-memory-openclaw - runtime plugin id after install:
agentic-memory
2. Configure
Managed hosted:
openclaw agentic-memory doctor --hosted --backend-url https://backend.agentmemorylabs.com
openclaw agentic-memory setup --hosted --backend-url https://backend.agentmemorylabs.comSelf-hosted:
openclaw agentic-memory doctor --self-hosted --backend-url http://127.0.0.1:8765
openclaw agentic-memory setup --self-hosted --backend-url http://127.0.0.1:8765Recommended order: install → doctor → setup.
3. Verify
openclaw agentic-memory project statusRoll back
Hermes: Set memory.provider and context.engine back to their previous values via hermes config set.
OpenClaw:Disable or remove the plugin through your host's plugin management flow.