uipath-orchestrator-mcp
Provides tools for managing UiPath Orchestrator resources including jobs, processes, queues, schedules, robots, machines, and assets across folders.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@uipath-orchestrator-mcpShow me all faulted jobs from the last 24 hours."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
UiPath Orchestrator MCP Server
An MCP (Model Context Protocol) server that exposes UiPath Orchestrator operations as tools, enabling AI assistants like Claude to interact with your UiPath tenant directly.
Features
23 tools spanning the core Orchestrator APIs:
Category | Tools |
Overview |
|
Folders |
|
Jobs |
|
Processes |
|
Queues |
|
Schedules |
|
Robots & Machines |
|
Assets |
|
Related MCP server: ansible-mcp-server
Prerequisites
Python 3.12+
A UiPath Cloud account with an external application (OAuth client credentials)
The following OAuth scopes:
OR.Jobs OR.Folders OR.Queues OR.Robots OR.Execution OR.Machines OR.Assets
Creating a UiPath External Application
In UiPath Automation Cloud, go to Admin > External Applications
Create a new application with Application Scopes (not user scopes)
Grant the scopes listed above
Copy the Client ID and Client Secret
Installation
Option 1: pip (stdio transport — recommended for local use)
pip install uipath-orchestrator-mcpOption 2: Run from source
git clone https://github.com/adamstuber/uipath-orchestrator-mcp.git
cd uipath-orchestrator-mcp
pip install .Option 3: Docker (SSE transport — for remote/shared use)
docker build -t uipath-orchestrator-mcp .
docker run -p 8000:8000 \
-e UIPATH_CLIENT_ID=your_client_id \
-e UIPATH_CLIENT_SECRET=your_client_secret \
-e UIPATH_TENANT_NAME=your_tenant \
-e UIPATH_ORG_NAME=your_org \
uipath-orchestrator-mcpConfiguration
Copy .env.example to .env and fill in your credentials:
cp .env.example .envVariable | Required | Description |
| Yes | OAuth client ID from your external application |
| Yes | OAuth client secret |
| Yes | Your UiPath tenant name (e.g. |
| Yes | Your UiPath organization name (from the cloud URL) |
| No | Space-separated OAuth scopes (default: all required scopes) |
| No |
|
| No | Host to bind when using an HTTP transport (default: |
| No | Port to bind when using an HTTP transport (default: |
| No | Logging level: |
Usage
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"uipath-orchestrator": {
"command": "uipath-orchestrator-mcp",
"env": {
"UIPATH_CLIENT_ID": "your_client_id",
"UIPATH_CLIENT_SECRET": "your_client_secret",
"UIPATH_TENANT_NAME": "your_tenant",
"UIPATH_ORG_NAME": "your_org"
}
}
}
}Alternatively, if you use a .env file:
{
"mcpServers": {
"uipath-orchestrator": {
"command": "uipath-orchestrator-mcp"
}
}
}Claude Code (CLI)
claude mcp add uipath-orchestrator uipath-orchestrator-mcpHTTP transports (Docker or remote server)
Two HTTP-based transports are supported for remote or containerised deployments:
Transport |
| Endpoint | Notes |
Streamable HTTP |
|
| Recommended — newer MCP spec standard |
SSE |
|
| Legacy, kept for older client compatibility |
Example with streamable HTTP:
docker run -p 8000:8000 \
-e MCP_TRANSPORT=streamable-http \
-e UIPATH_CLIENT_ID=... \
-e UIPATH_CLIENT_SECRET=... \
-e UIPATH_TENANT_NAME=... \
-e UIPATH_ORG_NAME=... \
uipath-orchestrator-mcpThen connect your MCP client to http://your-host:8000/mcp.
Example prompts
Once connected, you can ask Claude things like:
"Show me all faulted jobs from the last 24 hours across all folders."
"Start the InvoiceProcessing process in the Finance folder."
"How many Failed items are in the BillingQueue queue?"
"Retry all failed queue items in the Accounts folder."
"Disable the nightly schedule for the ReportGenerator process."
"What robots are available in the Production folder?"
Development
git clone https://github.com/adamstuber/uipath-orchestrator-mcp.git
cd uipath-orchestrator-mcp
pip install poetry
poetry install
cp .env.example .env # fill in your credentialsRun the server locally (stdio):
poetry run uipath-orchestrator-mcpProject structure
uipath_orchestrator_mcp/
__init__.py # package init
api.py # UiPath Orchestrator API client (authentication, OData, retries)
server.py # MCP tool definitions (FastMCP)
Dockerfile # SSE transport container
pyproject.tomlContributing
Contributions are welcome. Please open an issue before submitting a pull request for significant changes.
Fork the repository
Create a feature branch (
git checkout -b feature/my-feature)Commit your changes
Open a pull request
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adamstuber/uipath-orchestrator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server