Spaces:
Sleeping
Sleeping
Jason Sosa commited on
Commit ·
1dc929f
1
Parent(s): 34cb740
Improve server card description for Smithery listing
Browse files
src/omega/server/http_server.py
CHANGED
|
@@ -71,9 +71,18 @@ def create_http_app(server, api_key: str | None = None) -> Starlette:
|
|
| 71 |
return JSONResponse({
|
| 72 |
"name": "omega-memory",
|
| 73 |
"version": __version__,
|
| 74 |
-
"description":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
"homepage": "https://omegamax.co",
|
| 76 |
"repository": "https://github.com/omega-memory/core",
|
|
|
|
| 77 |
"transports": [
|
| 78 |
{"type": "streamable-http", "url": "/mcp"},
|
| 79 |
{"type": "stdio", "command": "python3 -m omega.server.mcp_server"},
|
|
|
|
| 71 |
return JSONResponse({
|
| 72 |
"name": "omega-memory",
|
| 73 |
"version": __version__,
|
| 74 |
+
"description": (
|
| 75 |
+
"OMEGA gives AI coding agents persistent memory that survives across sessions. "
|
| 76 |
+
"Store decisions, lessons learned, error patterns, and task checkpoints — then "
|
| 77 |
+
"retrieve them instantly via semantic search or relationship graph traversal. "
|
| 78 |
+
"Features include automatic session briefings, memory consolidation, "
|
| 79 |
+
"time-based reminders, encrypted user profiles, and knowledge compaction. "
|
| 80 |
+
"Works with Claude Code, Cursor, Windsurf, VS Code, and any MCP-compatible client. "
|
| 81 |
+
"Install locally with: pip install omega-memory && omega setup"
|
| 82 |
+
),
|
| 83 |
"homepage": "https://omegamax.co",
|
| 84 |
"repository": "https://github.com/omega-memory/core",
|
| 85 |
+
"icon": "https://omegamax.co/icon.png",
|
| 86 |
"transports": [
|
| 87 |
{"type": "streamable-http", "url": "/mcp"},
|
| 88 |
{"type": "stdio", "command": "python3 -m omega.server.mcp_server"},
|