Integration Guides
OpenClaw
Add HyperMemory to OpenClaw agents
OpenClaw
Option 1: CLI (recommended)
The simplest way to add HyperMemory to OpenClaw is through the CLI. Ask OpenClaw to add it:
- Tell OpenClaw to add the HyperMemory CLI.
- Provide the server URL:
https://api.hypermemory.io/mcp - OpenClaw adds the connection and prompts you for your API key.
- Enter your API key.
- Done.
Generate API keys at app.hypermemory.io under API Keys in the main navigation.
Option 2: MCP server configuration
If you want to add HyperMemory as an MCP server directly:
{
"mcpServers": {
"hypermemory": {
"url": "https://api.hypermemory.io/mcp"
}
}
}
OpenClaw handles the OAuth + PKCE flow — you sign in with GitHub, Google, or email when prompted.
To use an API key instead of OAuth:
{
"mcpServers": {
"hypermemory": {
"url": "https://api.hypermemory.io/mcp",
"headers": {
"Authorization": "Bearer hm_YOUR_KEY_HERE"
}
}
}
}
Verify
List available tools in your agent. You should see 12 hm_* tools. See API Reference for the full list.
Agent workflow
A typical OpenClaw agent using HyperMemory:
- Start of conversation: call
hm_get_overview+hm_recallto load context - When new info appears: call
hm_recallto check for duplicates, thenhm_store - Dense text: call
hm_ingestto decompose a large block of text into graph entities automatically - Build connections: relationships are created automatically during
hm_storeand enrichment - End of conversation: important context is already persisted for next time