Skip to content

Commit 2a8f15a

Browse files
authored
Merge pull request #49 from UiPath/fix/refactor
fix: message type jsonrpc
2 parents 1cfeab8 + e64f178 commit 2a8f15a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-mcp"
3-
version = "0.0.49"
3+
version = "0.0.50"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def on_message_received(self) -> None:
7272
session_id=self._session_id,
7373
server_name=self._server_config.name,
7474
) as _:
75-
await self._message_queue.put(message)
75+
await self._message_queue.put(json_message)
7676

7777
async def stop(self) -> None:
7878
"""Clean up resources and stop the server."""

0 commit comments

Comments
 (0)