File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/uipath_mcp/_cli/_runtime Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-mcp"
3- version = " 0.0.43 "
3+ version = " 0.0.44 "
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 @@ -330,10 +330,14 @@ async def dispose_session(self) -> None:
330330 response = self ._uipath .api_client .request (
331331 "POST" ,
332332 f"mcp_/mcp/{ self .server .name } /out/message?sessionId={ self .server .session_id } " ,
333- json = types .JSONRPCNotification (
333+ json = types .JSONRPCResponse (
334334 jsonrpc = "2.0" ,
335- method = "notifications/cancelled" ,
336- params = {"requestId" : "*" },
335+ id = 0 ,
336+ result = {
337+ "protocolVersion" : "invalid-version" ,
338+ "capabilities" : {},
339+ "serverInfo" : {"name" : "server" , "version" : "1.0" }
340+ }
337341 ).model_dump (),
338342 )
339343 if response .status_code == 202 :
You can’t perform that action at this time.
0 commit comments