Getting Started
import { Tabs, TabItem } from ‘@astrojs/starlight/components’;
Connect Covalence to your AI client by adding it as an MCP server. Once connected, your AI gains persistent memory that persists across sessions.
Prerequisites
Section titled “Prerequisites”- macOS 15 or later (Sonoma)
- Covalence installed in
/Applications
Connect Your AI Client
Section titled “Connect Your AI Client”```json{ "mcpServers": { "covalence": { "command": "/Applications/Covalence.app/Contents/MacOS/cov-mcp" } }}```
Then restart Claude Desktop.```bashclaude mcp add covalence /Applications/Covalence.app/Contents/MacOS/cov-mcp```
Claude Code picks up the new server immediately — no restart needed.```json{ "mcpServers": { "covalence": { "command": "/Applications/Covalence.app/Contents/MacOS/cov-mcp" } }}``````bashopencode mcp add covalence /Applications/Covalence.app/Contents/MacOS/cov-mcp```Add the AI Instruction
Section titled “Add the AI Instruction”Connecting the MCP server gives your AI access to the memory tools, but it won’t use them automatically without guidance. Add the AI Instruction to your AI client’s system prompt so it knows when to search and store.
This step is recommended for best results.
Verify It Works
Section titled “Verify It Works”Ask your AI: “What do you know about me?”
If Covalence is connected, it will use memory_search to look up relevant context and respond. On a fresh install the database is empty, so the AI will say it has no memories yet — that’s expected.
What’s Next
Section titled “What’s Next”- Spaces — Isolate memories by project using the
--spaceflag - Core Memories — Pin important knowledge so your AI always checks it first
- AI Instruction — Full instruction text and where to add it per client