Integrations
Persistent Memory for Windsurf - Unison MCP Setup
Connect Windsurf to Unison via MCP: persistent team context across every Cascade session.
Learn how to give Windsurf persistent team memory using the Unison MCP server.
Install
Add to Windsurf's MCP configuration:
{
"mcpServers": {
"unison-brain": {
"command": "npx",
"args": ["-y", "@unisonlabs/mcp"],
"env": { "UNISON_TOKEN": "usk_live_..." }
}
}
}The loop the agent runs
- Task start:
brain_contextwith the task as the query - relevant decisions, facts, and history arrive as one markdown block. - While working:
brain_record_factwhen something durable is learned;brain_writefor documents worth keeping. - Task end:
brain_ingestthe conversation so extraction captures what the session produced.
Every other session - yours, your teammates', tomorrow's - recalls what this one learned.
Persistent Memory for OpenAI Codex - Unison MCP Setup
Connect OpenAI Codex to Unison via MCP: architecture decisions, team conventions, and open issues survive every context reset automatically.
Persistent Memory for LangGraph Agents - Unison Integration
Give LangGraph agents persistent team memory that survives across threads and graph runs - recall into state at entry, write back on completion.