From 0f065af311af54f5f7b00b4edb0b0c64bfad380f Mon Sep 17 00:00:00 2001 From: Jason Sosa Date: Tue, 24 Mar 2026 13:42:41 +0800 Subject: [PATCH] feat: add omega-memory MCP server to mcp-configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds omega-memory — persistent agent memory with semantic search, multi-agent coordination, and knowledge graphs. Available on PyPI as `omega-memory` (pip install omega-memory). https://github.com/omega-memory/omega-memory Co-Authored-By: Claude Opus 4.6 (1M context) --- mcp-configs/mcp-servers.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mcp-configs/mcp-servers.json b/mcp-configs/mcp-servers.json index f71fc7d2..74123734 100644 --- a/mcp-configs/mcp-servers.json +++ b/mcp-configs/mcp-servers.json @@ -26,6 +26,11 @@ "args": ["-y", "@modelcontextprotocol/server-memory"], "description": "Persistent memory across sessions" }, + "omega-memory": { + "command": "uvx", + "args": ["omega-memory", "serve"], + "description": "Persistent agent memory with semantic search, multi-agent coordination, and knowledge graphs — pip install omega-memory" + }, "sequential-thinking": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],