From ee7a4d716eaa75861efb2ce28da6d2018b173a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=A4usler?= Date: Thu, 3 Jul 2025 00:49:19 +0200 Subject: [PATCH] fix: StdioServerParameters import --- llm_processor.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/llm_processor.py b/llm_processor.py index 5cf540f..7558865 100644 --- a/llm_processor.py +++ b/llm_processor.py @@ -26,10 +26,8 @@ except ImportError: print("Warning: python-dotenv package not found. Install with: pip install python-dotenv") # MCP imports -from mcp import ClientSession +from mcp import ClientSession, StdioServerParameters, types from mcp.client.stdio import stdio_client -from mcp.client.param.stdio import StdioServerParameters - class LLMProcessor: """Processes text through LLM and executes MCP tools."""