Skip to content

Commit bcfa7b3

Browse files
committed
fix: change register runtime url
1 parent b6491bf commit bcfa7b3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
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.54"
3+
version = "0.0.55"
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,6 @@ async def _handle_signalr_close(self) -> None:
240240

241241
async def _register(self) -> None:
242242
"""Register the MCP server with UiPath."""
243-
logger.info(f"Registering MCP server: {self._server.name}")
244-
245243
initialization_successful = False
246244
tools_result = None
247245
server_stderr_output = ""
@@ -322,7 +320,7 @@ async def _register(self) -> None:
322320
# Register with UiPath MCP Server
323321
self._uipath.api_client.request(
324322
"POST",
325-
f"mcp_/api/servers-with-tools/{self._server.name}",
323+
f"mcp_/mcp/{self._server.name}/runtime/start?runtimeId={self._runtime_id}",
326324
json=client_info,
327325
)
328326
logger.info("Registered MCP Server type successfully")

0 commit comments

Comments
 (0)