Skip to content

Commit 94833af

Browse files
authored
Merge pull request #6 from UiPath/fix/samples
Fix/samples
2 parents 1d80d87 + 839770a commit 94833af

File tree

6 files changed

+962
-10
lines changed

6 files changed

+962
-10
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,3 +172,9 @@ cython_debug/
172172

173173
# PyPI configuration file
174174
.pypirc
175+
176+
177+
**/uipath.db
178+
**/.uipath
179+
**/**.nupkg
180+
**/__uipath/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ UIPATH_ACCESS_TOKEN=YOUR_TOKEN_HERE
3232
### Servers Definition
3333

3434
```json
35+
// mcp.json
3536
{
3637
"servers": {
3738
"my-python-server": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-mcp"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

samples/mcp-server/uipath.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"entryPoints": [
3+
{
4+
"filePath": "my-python-server",
5+
"uniqueId": "06abc49c-b74d-4f33-83c9-99af1e115577",
6+
"type": "agent",
7+
"input": {},
8+
"output": {}
9+
},
10+
{
11+
"filePath": "fetch",
12+
"uniqueId": "417b6586-5fd3-4a92-9c4e-45a7f82e0ca3",
13+
"type": "agent",
14+
"input": {},
15+
"output": {}
16+
},
17+
{
18+
"filePath": "my-node-server",
19+
"uniqueId": "c7365a81-4036-47e2-a19e-8f9f412975bf",
20+
"type": "agent",
21+
"input": {},
22+
"output": {}
23+
},
24+
{
25+
"filePath": "sequential-thinking",
26+
"uniqueId": "956de7aa-b5e1-4858-a4f1-afeac2b8df4b",
27+
"type": "agent",
28+
"input": {},
29+
"output": {}
30+
}
31+
]
32+
}

0 commit comments

Comments
 (0)