Skip to main content

Get OMEGA

Your agent remembers decisions, lessons, and context across every session. Install in under a minute.

One-click installers

Download the installer for your platform. It registers OMEGA as an MCP server in Claude Desktop automatically.

macOS

Universal (Intel + Apple Silicon)

~91 MB

Download for macOS

Requires macOS 12+

Windows

64-bit installer

~12 MB

Download for Windows

Requires Windows 10+

Install via pip

For Python developers and anyone who prefers the command line. Works on macOS, Linux, and Windows.

terminal
$pip install omega-memory
$omega setup
15 MCP tools registered. Ready.

MCP configuration

Add OMEGA as an MCP server to your AI coding agent. Requires Python 3.11+ and pip install omega-memory first.

Claude Code

terminal
$claude mcp add omega -- python3.11 -m omega serve

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "omega": {
      "command": "python3.11",
      "args": ["-m", "omega", "serve"]
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "omega": {
      "command": "python3.11",
      "args": ["-m", "omega", "serve"]
    }
  }
}

OpenClaw

agent.yaml
mcp_servers:
  omega:
    command: omega
    args:
      - serve
      - --stdio

Cline

VS Code MCP Settings
{
  "mcpServers": {
    "omega": {
      "command": "python3.11",
      "args": ["-m", "omega", "serve"]
    }
  }
}

OpenAI Codex

terminal
$omega setup --client codex

Also works with

Antigravity

Gemini-powered IDE

Claude Desktop

One-click installer above

Zed

MCP extension support

Any MCP Client

Standard stdio protocol

python3.11 -m omega serve

Obsidian vault memory

Ask questions about your notes. Get answers with source links. Add new notes from your agent. A standalone MCP server powered by the OMEGA embedding engine.

terminal
$pip install omega-obsidian
$claude mcp add omega-obsidian -- omega-obsidian --vault-path /path/to/vault

For higher-quality embeddings: pip install omega-obsidian[omega]

Export OMEGA memories to Obsidian

Convert your OMEGA memory database into Obsidian-compatible markdown files with YAML frontmatter and wikilinks for graph edges.

terminal
$omega export-obsidian --output-dir ./my-vault/omega-memories
Exported 847 memories (1,203 edges) to ./my-vault/omega-memories

Requires omega-memory. Memories are organized by type into subdirectories with an index file.