We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b1fc21 + 3731bce commit 4a808e4Copy full SHA for 4a808e4
src/uipath_mcp/_cli/_runtime/_runtime.py
@@ -357,6 +357,8 @@ async def _register(self) -> None:
357
}
358
client_info["tools"].append(tool_info)
359
360
+ logger.info(client_info)
361
+
362
# Register with UiPath MCP Server
363
await self._uipath.api_client.request_async(
364
"POST",
@@ -366,6 +368,9 @@ async def _register(self) -> None:
366
368
logger.info("Registered MCP Server type successfully")
367
369
except Exception as e:
370
logger.error(f"Error during registration: {e}")
371
+ if (e.status_code == 400):
372
+ logger.error(f"Error details: {e.response.text}")
373
374
raise UiPathMcpRuntimeError(
375
"REGISTRATION_ERROR",
376
"Failed to register MCP Server",
0 commit comments