File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-mcp"
3- version = " 0.0.96 "
3+ version = " 0.0.97 "
44description = " UiPath MCP SDK"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.11"
Original file line number Diff line number Diff line change @@ -33,6 +33,23 @@ async def execute():
3333 context = UiPathMcpRuntimeContext .from_config (
3434 env .get ("UIPATH_CONFIG_PATH" , "uipath.json" )
3535 )
36+
37+ import json
38+ import os
39+
40+ config_path = env .get ("UIPATH_CONFIG_PATH" )
41+ path = config_path or "uipath.json"
42+
43+ config2 = {}
44+
45+ if os .path .exists (path ):
46+ with open (path , "r" ) as f :
47+ config2 = json .load (f )
48+
49+ print ("-" * 40 )
50+ print (config2 )
51+ print ("-" * 40 )
52+
3653 context .config = config
3754 context .entrypoint = entrypoint
3855 context .input = input
You can’t perform that action at this time.
0 commit comments