File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/uipath_mcp/_cli/_runtime Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-mcp"
3- version = " 0.0.7 "
3+ version = " 0.0.8 "
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 @@ -58,7 +58,10 @@ async def execute(self) -> Optional[UiPathRuntimeResult]:
5858
5959 self .cancel_event = asyncio .Event ()
6060
61- self .signalr_client = SignalRClient (signalr_url )
61+ self .signalr_client = SignalRClient (signalr_url , headers = {
62+ "X-UiPath-Internal-TenantId" : self .context .trace_context .tenant_id ,
63+ "X-UiPath-Internal-AccountId" : self .context .trace_context .org_id ,
64+ })
6265 self .signalr_client .on ("MessageReceived" , self .handle_signalr_message )
6366 self .signalr_client .on ("SessionClosed" , self .handle_signalr_session_closed )
6467 self .signalr_client .on_error (self .handle_signalr_error )
You can’t perform that action at this time.
0 commit comments