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: Jira & Confluence 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables interaction with UiPath Orchestrator Cloud API to manage processes, robots, jobs, queues, and assets through natural language.Last updated104MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Jira and Confluence via natural language, supporting 37 Jira tools and 16 Confluence tools.Last updated53MIT
- Alicense-qualityFmaintenanceEnables AI assistants and automation tools to manage Microsoft 365, Entra ID, and Intune resources through 32 tools for user/device/file management and infrastructure monitoring.Last updated5MIT
- Alicense-qualityDmaintenanceEnables AI assistants to securely interact with UiPath Orchestrator for managing queues, jobs, robots, and automation analytics through natural language.Last updatedMIT
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Universal AI API Orchestrator — 1,554 tools, 96 services. One install.
Connect your AI assistants to Keboola and expose your data, transformations, SQL queries, ...
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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