Integration Guides
n8n
Connect HyperMemory to n8n workflows via MCP
n8n
n8nās MCP node can connect directly to HyperMemory, giving your workflows access to all 12 memory tools.
Setup
- Add an MCP Client node to your workflow.
- Set Server URL to:
https://api.hypermemory.io/mcp
-
Authentication: configure either:
- OAuth2 credentials (recommended) ā n8n handles the token flow
- Header Auth ā set
AuthorizationtoBearer hm_YOUR_KEY_HERE
-
Select the tool to call (e.g.
hm_store,hm_recall).
Example: store a memory from a webhook
- Webhook node receives incoming data
- MCP Client node calls
hm_storewith:key: extracted from webhook payloaddescription: summary of the eventdata: structured metadata
Example: recall before responding
- MCP Client calls
hm_recallwith a search query - IF node checks whether results were returned
- Branch: use recalled context or proceed without
Example: ingest a document
- HTTP Request node fetches document content
- MCP Client calls
hm_ingestwith the full text and a context label - The server decomposes the text into graph entities in one LLM pass
Available tools
All 12 hm_* tools are available through the MCP node. See API Reference for parameters and response shapes.