From 0f065af311af54f5f7b00b4edb0b0c64bfad380f Mon Sep 17 00:00:00 2001 From: Jason Sosa Date: Tue, 24 Mar 2026 13:42:41 +0800 Subject: [PATCH 1/2] 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"], From b575f2e3ebc67d3c143dd460e59ac19587d76cd0 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Sun, 29 Mar 2026 21:39:55 -0400 Subject: [PATCH 2/2] fix: align omega-memory config description --- mcp-configs/mcp-servers.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp-configs/mcp-servers.json b/mcp-configs/mcp-servers.json index 74123734..8c0b02b8 100644 --- a/mcp-configs/mcp-servers.json +++ b/mcp-configs/mcp-servers.json @@ -29,7 +29,7 @@ "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" + "description": "Persistent agent memory with semantic search, multi-agent coordination, and knowledge graphs — run via uvx (richer than the basic memory store)" }, "sequential-thinking": { "command": "npx",