UiPath MCP Server
Exposes the UiPath Orchestrator Cloud API, providing tools for managing processes, robots, machines, jobs, queues, and assets.
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 MCP Serverlist all processes in the Orchestrator"
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 MCP Server
Uipath Mcp Server
A Model Context Protocol (MCP) server that exposes the UiPath Orchestrator
Cloud API to MCP-compatible clients such as Claude Desktop. Built on the
official mcp Python SDK (FastMCP) with async httpx and OAuth2 client
credentials authentication.
Features
OAuth2 client credentials flow against UiPath Cloud Identity Server with automatic token caching and refresh.
Personal access token (PAT) support via the
UIPATH_ACCESS_TOKENenv var.Optional Orchestrator folder scoping through
X-UIPATH-OrganizationUnitId.Typed tool surface covering processes, robots, machines, jobs, queues, and assets.
Single-retry on 401 with forced token refresh.
Installation
Install from source:
git clone https://github.com/LokiMCPUniverse/uipath-mcp-server.git
cd uipath-mcp-server
python3 -m venv .venv
source .venv/bin/activate
pip install -e .Configuration
All configuration is read from environment variables (prefixed with UIPATH_)
or an optional .env file in the working directory.
Variable | Required | Description |
| no | Base URL, defaults to |
| yes | Organization (account) logical name. |
| yes | Tenant logical name. |
| yes* | OAuth2 client id of the external application. |
| yes* | OAuth2 client secret. |
| no | Pre-issued access token or PAT (overrides client credentials). |
| no | Folder id sent via |
| no | HTTP timeout in seconds (default 30). |
* Not required if UIPATH_ACCESS_TOKEN is provided.
Running
uipath-mcpClaude Desktop configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"uipath": {
"command": "uipath-mcp",
"env": {
"UIPATH_ORGANIZATION_NAME": "your-org",
"UIPATH_TENANT_NAME": "your-tenant",
"UIPATH_CLIENT_ID": "...",
"UIPATH_CLIENT_SECRET": "...",
"UIPATH_FOLDER_ID": "123456"
}
}
}
}Tools
Tool | Description |
| List Orchestrator processes (Releases). |
| List robots registered in the tenant. |
| List machines registered in the tenant. |
| Start a process, optionally with specific robots and input arguments. |
| List jobs, optionally filtered by state. |
| Get a single job by id. |
| Stop or kill a running job ( |
| List queue items, optionally filtered by queue name and status. |
| Add a new item to a queue with arbitrary specific content. |
| List assets in the current folder. |
Development
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest -x --tb=short
ruff check src testsLicense
MIT License - see LICENSE file for details
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
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/LokiMCPUniverse/uipath-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server