Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ mcp_servers:
memory:
provider: agentmemory

Verify with `curl http://localhost:3111/agentmemory/health`. Open http://localhost:3113 for the real-time viewer. For deeper 6-hook memory provider integration (pre-LLM context injection, turn capture, MEMORY.md mirroring, system prompt block), copy integrations/hermes from the agentmemory repo to ~/.hermes/plugins/agentmemory.
Verify with `curl http://localhost:3111/agentmemory/health`. Open http://localhost:3113 for the real-time viewer. For deeper 6-hook memory provider integration (pre-LLM context injection, turn capture, MEMORY.md mirroring, system prompt block), copy integrations/hermes from the agentmemory repo to ~/.hermes/plugins/agentmemory, then run `hermes plugins enable agentmemory --no-allow-tool-override`. The hooks take effect on the next session.
```

Full guide: [`integrations/hermes/`](integrations/hermes/)
Expand Down
8 changes: 7 additions & 1 deletion integrations/hermes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ If I want deeper integration — pre-LLM context injection, turn-level
capture, memory-write mirroring to MEMORY.md, and system prompt block
injection — copy `integrations/hermes` from the agentmemory repo to
`~/.hermes/plugins/agentmemory` instead. That gives me the
6-hook memory provider plugin on top of the MCP server.
6-hook memory provider plugin on top of the MCP server. After copying
it, run `hermes plugins enable agentmemory --no-allow-tool-override`;
the hooks take effect on the next session.
```

That's it. Hermes handles the rest.
Expand Down Expand Up @@ -82,8 +84,12 @@ Copy this folder to your Hermes plugins directory:

```bash
cp -r integrations/hermes ~/.hermes/plugins/agentmemory
hermes plugins enable agentmemory --no-allow-tool-override
```

Hermes user plugins are opt-in. Copying the directory alone leaves the
plugin installed but disabled, so its lifecycle hooks will not load.

Start the agentmemory server:

```bash
Expand Down