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 fcf21ad commit 338b82dCopy full SHA for 338b82d
src/uipath_mcp/_cli/_runtime/_context.py
@@ -31,7 +31,8 @@ def from_config(cls, config_path=None):
31
if os.path.exists(path):
32
with open(path, "r") as f:
33
config = json.load(f)
34
-
+ print("CONFIG:")
35
+ print(json.dumps(config, indent=2))
36
if "fpsContext" in config:
37
fps_context = config["fpsContext"]
38
mcp_instance.server_id = fps_context.get("Id")
0 commit comments