Skip to content

Integrations

HydraMem is MCP-native: it speaks the Model Context Protocol, so any MCP-capable AI coding tool can use HydraMem as its long-term memory — 100 % locally, with zero cloud calls by default.

Every integration below boils down to two ingredients:

  1. Run the serverhydramem serve (stdio for desktop/CLI clients, or HTTP for shared/remote use).
  2. Point your tool at it — add HydraMem to the tool's MCP config.

Once connected, your agent gets all 18 MCP tools (search, graph traversal, verification, the remember tool, ingestion, stats…). See the MCP tools reference.

Pick your tool

How "remembering" works in HydraMem (honest contract)

HydraMem's memory model is agent-driven (see ADR-0005): the agent decides what is worth keeping and calls the remember tool to persist a verified fact mid-conversation, or ingests your Markdown notes with hydramem ingest.

What this means, stated plainly:

  • ✅ HydraMem ingests Markdown documents and agent-submitted knowledge (remember, ingest_directory_tool, submit_session_extraction).
  • ✅ Every relation is verified (SR-MKG + VoG) before it enters the graph.
  • ❌ HydraMem does not ship a raw transcript-miner that parses each tool's proprietary JSONL session files. "Auto-save" hooks below re-ingest your knowledge directory and nudge the agent to remember — they do not scrape the chat log. If a tool-native transcript miner matters to you, it's tracked as potential future work, not a shipped feature.