Skip to content

Commit 481d1a7

Browse files
committed
fix: proper package type
1 parent a2660c2 commit 481d1a7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "uipath-mcp"
3-
version = "0.0.67"
3+
version = "0.0.68"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"
77
dependencies = [
88
"mcp==1.6.0",
99
"pysignalr==1.2.0",
10-
"uipath==2.0.11",
10+
"uipath==2.0.16",
1111
]
1212
classifiers = [
1313
"Development Status :: 3 - Alpha",

src/uipath_mcp/_cli/_runtime/_runtime.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ async def _register(self) -> None:
328328
client_info["tools"].append(tool_info)
329329

330330
# Register with UiPath MCP Server
331-
logger.info(f"Starting register request mcp_/mcp/{self._server.name}/runtime/start?runtimeId={self._runtime_id} ...")
332331
await self._uipath.api_client.request_async(
333332
"POST",
334333
f"mcp_/mcp/{self._server.name}/runtime/start?runtimeId={self._runtime_id}",

src/uipath_mcp/_cli/cli_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def mcp_init_middleware_async(entrypoint: str) -> MiddlewareResult:
2828
entrypoint_data = {
2929
"filePath": server.name,
3030
"uniqueId": str(uuid.uuid4()),
31-
"type": "agent",
31+
"type": "mcpserver",
3232
"input": {},
3333
"output": {}
3434
}

0 commit comments

Comments
 (0)