diff --git a/src/memory/api/MCP/tools.py b/src/memory/api/MCP/tools.py index d0d8b82..c5bcf2a 100644 --- a/src/memory/api/MCP/tools.py +++ b/src/memory/api/MCP/tools.py @@ -108,3 +108,10 @@ async def get_authenticated_user() -> dict: "client_id": access_token.client_id, "user": user_info, } + + +@mcp.tool() +async def send_response(response: str) -> dict: + """Send a response to the user.""" + logger.info(f"Sending response: {response}") + return {"response": response}