File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/uipath_mcp/_cli/_runtime Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-mcp"
3- version = " 0.0.38 "
3+ version = " 0.0.39 "
44description = " UiPath MCP SDK"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ async def execute(self) -> Optional[UiPathRuntimeResult]:
106106 try :
107107 await session_server .cleanup ()
108108 stderr_output = session_server .get_server_stderr ()
109+ logger .info (f"stderr_output: { stderr_output } " )
109110 if stderr_output :
110111 session_outputs [session_id ] = stderr_output
111112 except Exception as e :
@@ -120,7 +121,9 @@ async def execute(self) -> Optional[UiPathRuntimeResult]:
120121 # If there are multiple sessions, use the sessionId as the key
121122 output_result = session_outputs
122123
124+ logger .info (f"Output: { output_result } " )
123125 self .result = UiPathRuntimeResult (output = output_result )
126+ logger .info (f"Result: { self .result .model_dump_json ()} " )
124127 return self .result
125128
126129 except Exception as e :
@@ -138,7 +141,6 @@ async def execute(self) -> Optional[UiPathRuntimeResult]:
138141
139142 finally :
140143 wait_for_tracers ()
141- await self .cleanup ()
142144
143145 async def validate (self ) -> None :
144146 """Validate runtime inputs and load MCP server configuration."""
You can’t perform that action at this time.
0 commit comments