What's Changed
MCP is now an optional dependency. This makes omega-memory lighter for users who only need the Python API, while keeping full MCP support available via an install extra.
Install
# For MCP clients (Claude Code, Cursor, Windsurf, Zed)
pip install omega-memory[server]
# For Python scripts, CI/CD, automation (no MCP server)
pip install omega-memory
Highlights
pip install omega-memory no longer pulls in the MCP package (~50MB lighter, no server process)
pip install omega-memory[server] works identically to previous versions
omega setup --hooks-only configures hooks without MCP server (~600MB RAM saved per session)
- 9 new functions in the public Python API (
batch_store, create_reminder, deduplicate, etc.)
- Clear error message if you try to run the MCP server without the
[server] extra
Migration
If you use OMEGA with Claude Code, Cursor, or any MCP client, update your install:
pip install omega-memory[server]
See the full CHANGELOG for details.