OpenClaw Setup
Add Memcone memory to OpenClaw via its outbound MCP server registry.
Automatic setup (recommended)
Run this in your project directory:
npx @memcone/cli linknpx @memcone/cli linklink detects OpenClaw and registers Memcone in its MCP registry automatically. Restart OpenClaw and you're done.
You need a Memcone API key from dashboard → API keys. The CLI will prompt for it on first run and save it to ~/.memcone/credentials.
Manual config
Register Memcone as a saved MCP server:
openclaw mcp set memcone '{
"url": "https://memcone.com/api/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer mem_live_YOUR_KEY_HERE"
}
}'openclaw mcp set memcone '{
"url": "https://memcone.com/api/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer mem_live_YOUR_KEY_HERE"
}
}'Verify:
openclaw mcp list
openclaw mcp show memcone --jsonopenclaw mcp list
openclaw mcp show memcone --jsonUsing it
Once registered, your agent can call:
memcone.context— injects project identity, rules, and past session memorymemcone.remember— stores facts, preferences, and session checkpointsmemcone.recall— searches past memory on demand
"Load any relevant project context before you continue."
"Checkpoint what we changed so the next session resumes cleanly."
Troubleshooting
Tools not available after setup → Restart your OpenClaw runtime so it picks up the saved MCP definition.
401 Unauthorized
→ Verify your key at dashboard → API keys. It must start with mem_live_.
No memory returned → Nothing is stored yet. Ask the agent: "Remember that this project uses Next.js and Drizzle". Confirm at dashboard → Memory.