Integrations
Cerebrumma connects to every major AI coding tool via the Model Context Protocol. Set it up once — your Brain travels with you everywhere.
Available MCP tools
read_memoryFetch all episodic, semantic, and personal entriessearch_memoryKeyword search across all memory layersget_protocolsReturn all procedural skills and rulesadd_entryWrite a new memory entry from inside the AI sessionget_statusShow entry counts across every layerThe deepest integration. Cerebrumma auto-configures Claude Code during install.
Setup
The installer uses claude mcp add which writes to ~/.claude.json. This is different from ~/.claude/settings.json — make sure you use the command, not manual JSON editing.
Config file
~/.claude.json (via claude mcp add)Config
claude mcp add cerebrumma -s user ~/.cerebrumma/run-mcp.sh
Connect Cerebrumma to GitHub Copilot in VS Code via the MCP servers config.
Setup
GitHub Copilot uses the "servers" key — not "mcpServers" like most other tools. The "type": "stdio" field is required. Copilot's cloud agent supports Tools only (not Resources).
Config file
.vscode/mcp.json (workspace) or user MCP configConfig
{
"servers": {
"cerebrumma": {
"type": "stdio",
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Connect Cerebrumma to Cursor's AI via MCP in one config file.
Setup
For global config across all projects, use ~/.cursor/mcp.json instead.
Config file
.cursor/mcp.jsonConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Cline (VS Code extension) has first-class MCP support with a dedicated config file.
Setup
Cline maintains its own MCP config file separate from VS Code's .vscode/mcp.json. The alwaysAllow field can be added to skip per-call approval prompts for specific tools.
Config file
~/.cline/data/settings/cline_mcp_settings.jsonConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Wire your Brain into Windsurf's Cascade AI via the MCP config.
Setup
You can also configure it via Windsurf → Preferences → MCP Servers.
Config file
~/.codeium/windsurf/mcp_config.jsonConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Add Cerebrumma to Continue.dev's config — works in Agent mode across VS Code and JetBrains.
Setup
MCP tools are only available in Continue's Agent mode. They do not function in Chat or Autocomplete modes.
Config file
~/.continue/config.yamlConfig
# Add to ~/.continue/config.yaml
mcpServers:
- name: cerebrumma
command: uv
args:
- run
- --project
- ~/.cerebrumma/mcp_server
- cerebrumma-mcpZed calls MCP servers "context servers" — add Cerebrumma to your global Zed settings.
Setup
Zed uses the non-standard context_servers key — not mcpServers. The source: "custom" field is required for manually-added servers.
Config file
~/.config/zed/settings.jsonConfig
{
"context_servers": {
"cerebrumma": {
"source": "custom",
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Amazon Q Developer supports MCP in both the CLI and VS Code / JetBrains plugins.
Setup
Enterprise (Pro tier) admins can allowlist or disable MCP org-wide. Workspace-level config (.amazonq/default.json) takes precedence over global config.
Config file
~/.aws/amazonq/default.jsonConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Roo Code (VS Code fork of Cline) supports per-project MCP config you can commit to your repo.
Setup
The .roo/mcp.json file can be committed to share MCP config across a team — useful for a shared project Brain.
Config file
.roo/mcp.jsonConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Use Cerebrumma's dream cycle to inject curated Brain context into Codex sessions via AGENTS.md.
Setup
Native MCP support for Codex CLI is on our roadmap. Context injection via AGENTS.md works today.
Config file
AGENTS.md or codex.mdConfig
# Generate a Brain snapshot for Codex cerebrum dream > AGENTS.md
Aider doesn't support MCP natively — inject Cerebrumma context via the read: convention in your Aider config.
Setup
Aider does not have a native MCP client. This file-export approach gives you the same context injection benefit without MCP.
Config file
~/.aider.conf.yml or .aider.conf.ymlConfig
# 1. Export a Brain snapshot cerebrum dream > BRAIN.md # 2. Add to ~/.aider.conf.yml or .aider.conf.yml in project read: - BRAIN.md

Connect Cerebrumma to Antigravity's AI via the standard MCP protocol.
Setup
Exact settings path may vary by Antigravity version. Look for 'MCP Servers' or 'Tools' in preferences.
Config file
Antigravity MCP settingsConfig
{
"mcpServers": {
"cerebrumma": {
"command": "uv",
"args": ["run", "--project", "~/.cerebrumma/mcp_server", "cerebrumma-mcp"]
}
}
}Install in one command. Runs locally.
curl -fsSL http://get.cerebrumma.com | sh