From 07e3697f2768d1d4118ef1b29648ef3613b22fe4 Mon Sep 17 00:00:00 2001 From: 7shi <7shi@live.jp> Date: Mon, 2 Dec 2024 02:59:21 +0900 Subject: [PATCH] Adjust timeout to align with MCP client timeouts --- src/mcp_knowledge_base/obsidian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcp_knowledge_base/obsidian.py b/src/mcp_knowledge_base/obsidian.py index 0c66272..fa8698e 100644 --- a/src/mcp_knowledge_base/obsidian.py +++ b/src/mcp_knowledge_base/obsidian.py @@ -16,7 +16,7 @@ class Obsidian(): self.host = host self.port = port self.verify_ssl = verify_ssl - self.timeout = (5, 15) + self.timeout = (3, 6) def get_base_url(self) -> str: return f'{self.protocol}://{self.host}:{self.port}'