Skip to content

Commit 449140d

Browse files
committed
fix: rename output to content
1 parent 288d963 commit 449140d

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.46"
3+
version = "0.0.47"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ async def execute(self) -> Optional[UiPathRuntimeResult]:
117117
if len(session_outputs) == 1:
118118
# If there's only one session, use a single "output" key
119119
first_session_id = next(iter(session_outputs))
120-
output_result["output"] = session_outputs[first_session_id]
120+
output_result["content"] = session_outputs[first_session_id]
121121
elif session_outputs:
122122
# If there are multiple sessions, use the sessionId as the key
123123
output_result = session_outputs

0 commit comments

Comments
 (0)