diff --git a/src/uipath_mcp/_cli/_runtime/_runtime.py b/src/uipath_mcp/_cli/_runtime/_runtime.py index 7d7bd5a..be38127 100644 --- a/src/uipath_mcp/_cli/_runtime/_runtime.py +++ b/src/uipath_mcp/_cli/_runtime/_runtime.py @@ -1,4 +1,5 @@ import asyncio +import json import logging import os import sys @@ -368,6 +369,9 @@ async def _register(self) -> None: "Name": tool.name, "ProcessType": "Tool", "Description": tool.description, + "InputSchema": json.dumps(tool.inputSchema) + if tool.inputSchema + else "{}", } client_info["tools"].append(tool_info)