From b339cab3c1e4e519afe45cd2f1c2e8d2286a8ee3 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Sun, 25 May 2025 00:17:00 +0200 Subject: [PATCH] Fix: Typos in openmemory MCP tool description (#2793) --- openmemory/api/app/mcp_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmemory/api/app/mcp_server.py b/openmemory/api/app/mcp_server.py index 672a9a52..574ce589 100644 --- a/openmemory/api/app/mcp_server.py +++ b/openmemory/api/app/mcp_server.py @@ -38,7 +38,7 @@ mcp_router = APIRouter(prefix="/mcp") # Initialize SSE transport sse = SseServerTransport("/mcp/messages/") -@mcp.tool(description="Add a new memory. This method is called everytime the user informs anything about themselves, their preferences, or anything that has any relevent information whcih can be useful in the future conversation. This can also be called when the user asks you to remember something.") +@mcp.tool(description="Add a new memory. This method is called everytime the user informs anything about themselves, their preferences, or anything that has any relevant information which can be useful in the future conversation. This can also be called when the user asks you to remember something.") async def add_memories(text: str) -> str: uid = user_id_var.get(None) client_name = client_name_var.get(None)