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
Copy file name to clipboardExpand all lines: README.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,12 @@
6
6
7
7
A Python SDK that enables hosting local MCP servers on UiPath Platform.
8
8
9
+
Check out these sample projects to get started:
10
+
11
+
-[GitHub MCP Server (Go)](https://github.com/UiPath/uipath-mcp-python/tree/main/samples/github-helper-agent) - Build, pack and publish executable MCP Servers created in Go
12
+
-[Math MCP Server (Python)](https://github.com/UiPath/uipath-mcp-python/tree/main/samples/mcp-math-server) - Pack and publish custom Python code MCP Server
13
+
14
+
9
15
## Installation
10
16
11
17
```bash
@@ -20,19 +26,10 @@ uv add uipath-mcp
20
26
21
27
## Configuration
22
28
23
-
### Environment Variables
24
-
25
-
Create a `.env` file in your project root with the following variables:
Copy file name to clipboardExpand all lines: docs/how_to_pack_binary.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# How to pack and publish the official GitHub MCP Server
1
+
# How to pack and publish the GitHub MCP Server
2
2
3
-
This guide walks you through manually packaging and publishing the GitHub MCP server to UiPath Orchestrator. An [example GitHub Actions workflow](/.github/workflows/build-github-mcp-server.yml) is provided to automate these steps.
3
+
This guide walks you through manually packaging and publishing the official [GitHub MCP server](https://github.com/github/github-mcp-server) to UiPath Orchestrator. An [example GitHub Actions workflow](/.github/workflows/build-github-mcp-server.yml) is provided to automate these steps.
Copy file name to clipboardExpand all lines: samples/github-helper-agent/README.md
+19-4Lines changed: 19 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,19 @@ The agent uses:
8
8
- LangGraph for orchestration
9
9
- UiPath hosted GitHub MCP server
10
10
11
+
The agent consists of three main components:
12
+
13
+
1.[GitHub action to deploy](https://github.com/UiPath/uipath-mcp-python/blob/main/docs/how_to_pack_binary.md) the official GitHub MCP Server to UiPath
14
+
2.[GitHub action](https://github.com/UiPath/uipath-mcp-python/blob/main/.github/workflows/trigger-github-agent.yml) that triggers this agent on "/help command"
15
+
3. The GitHub helper agent itself with developer and reviewer nodes
0 commit comments