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.
1 parent 6c3900b commit cbad40eCopy full SHA for cbad40e
src/uipath_mcp/_cli/_runtime/_runtime.py
@@ -1,4 +1,5 @@
1
import asyncio
2
+import json
3
import logging
4
import os
5
import sys
@@ -368,6 +369,9 @@ async def _register(self) -> None:
368
369
"Name": tool.name,
370
"ProcessType": "Tool",
371
"Description": tool.description,
372
+ "InputSchema": json.dumps(tool.inputSchema)
373
+ if tool.inputSchema
374
+ else "{}",
375
}
376
client_info["tools"].append(tool_info)
377
0 commit comments