From 693c72d670bb21c46b688b21fb8df3eb55712997 Mon Sep 17 00:00:00 2001 From: Chase Date: Tue, 22 Apr 2025 15:40:10 -0700 Subject: [PATCH] remove sse subsection accessor of McpConfig in action_execution_client (#8021) --- .../runtime/impl/action_execution/action_execution_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openhands/runtime/impl/action_execution/action_execution_client.py b/openhands/runtime/impl/action_execution/action_execution_client.py index 5a3650aa40..60f18dcd7c 100644 --- a/openhands/runtime/impl/action_execution/action_execution_client.py +++ b/openhands/runtime/impl/action_execution/action_execution_client.py @@ -331,9 +331,9 @@ class ActionExecutionClient(Runtime): if self.mcp_clients is None: self.log( 'debug', - f'Creating MCP clients with servers: {self.config.mcp.sse.mcp_servers}', + f'Creating MCP clients with servers: {self.config.mcp.mcp_servers}', ) - self.mcp_clients = await create_mcp_clients(self.config.mcp.sse.mcp_servers) + self.mcp_clients = await create_mcp_clients(self.config.mcp.mcp_servers) return await call_tool_mcp_handler(self.mcp_clients, action) async def aclose(self) -> None: