UiPath MCP Server
Enables interaction with UiPath Orchestrator Cloud API to manage processes, robots, jobs, queues, and assets through natural language.
README
UiPath MCP Server
<div align="center">
Uipath Mcp Server
</div>
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 |
|---|---|---|
UIPATH_ORCHESTRATOR_URL |
no | Base URL, defaults to https://cloud.uipath.com. |
UIPATH_ORGANIZATION_NAME |
yes | Organization (account) logical name. |
UIPATH_TENANT_NAME |
yes | Tenant logical name. |
UIPATH_CLIENT_ID |
yes* | OAuth2 client id of the external application. |
UIPATH_CLIENT_SECRET |
yes* | OAuth2 client secret. |
UIPATH_ACCESS_TOKEN |
no | Pre-issued access token or PAT (overrides client credentials). |
UIPATH_FOLDER_ID |
no | Folder id sent via X-UIPATH-OrganizationUnitId. |
UIPATH_TIMEOUT |
no | HTTP timeout in seconds (default 30). |
* Not required if UIPATH_ACCESS_TOKEN is provided.
Running
uipath-mcp
Claude 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_processes |
List Orchestrator processes (Releases). |
list_robots |
List robots registered in the tenant. |
list_machines |
List machines registered in the tenant. |
start_job |
Start a process, optionally with specific robots and input arguments. |
list_jobs |
List jobs, optionally filtered by state. |
get_job |
Get a single job by id. |
stop_job |
Stop or kill a running job (SoftStop or Kill). |
list_queue_items |
List queue items, optionally filtered by queue name and status. |
add_queue_item |
Add a new item to a queue with arbitrary specific content. |
list_assets |
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 tests
License
MIT License - see LICENSE file for details
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.