You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -46,15 +59,15 @@ This command opens a browser for authentication and creates/updates your `.env`
46
59
### Initialize a Project
47
60
48
61
```bash
49
-
uipath init [ENTRYPOINT]
62
+
uipath init [SERVER]
50
63
```
51
64
52
-
Creates a `uipath.json` configuration file for your project. If the entrypoint is not provided, it will try to find a single Python file in the current directory.
65
+
Creates a `uipath.json` configuration file for your project. If [SERVER]is not provided, it will create an entrypoint for each MCP server defined in the `mcp.json` file.
53
66
54
67
### Debug a Project
55
68
56
69
```bash
57
-
uipath run ENTRYPOINT [INPUT]
70
+
uipath run [SERVER]
58
71
```
59
72
60
73
Starts the local MCP Server
@@ -89,6 +102,7 @@ Publishes the most recently created package to your UiPath Orchestrator.
89
102
90
103
To properly use the CLI for packaging and publishing, your project should include:
91
104
- A `pyproject.toml` file with project metadata
105
+
- A `mcp.json` file with servers metadata
92
106
- A `uipath.json` file (generated by `uipath init`)
0 commit comments