UiPath MCP Server
Enables AI assistants to securely interact with UiPath Orchestrator for managing queues, jobs, robots, and automation analytics through natural language.
README
UiPath MCP Server
Model Context Protocol server that gives AI assistants secure access to UiPath Orchestrator data, queues, jobs, and automation analytics.
Overview
UiPath MCP Server connects MCP-compatible assistants to UiPath Orchestrator without custom integration code. It exposes orchestration capabilities as tools so assistants can query queues, inspect jobs, start automations, and retrieve logs with proper authentication and auditing.
This server is designed for teams that want faster operational insights and automation control from within Claude Desktop, Cursor, or any MCP client. It supports stdio for local usage and SSE for multi-user or service-to-service deployments.
Key Features:
- Unified access to queues, jobs, robots, assets, and audit logs
- Secure configuration with environment variables and scoped credentials
- SSE transport for multi-user and service integrations
- Rich analytics, licensing, and performance insights
Table of Contents
- Getting Started
- Configuration Reference
- Available Tools
- Available Resources
- Usage Examples
- Development
- Known Limitations
- Technical Shortcomings
- Troubleshooting
- License
Getting Started
Follow these steps to clone the repo, configure credentials, build, and start using the MCP server locally.
Prerequisites
- Node.js 18 or higher (run
node -vto check) - Git
- A UiPath Orchestrator instance (Cloud or On-Premises)
- UiPath External Application credentials (see step 2 below)
Step 1: Clone and Install
git clone https://dev.azure.com/uipathcato/uipath/_git/uipath_mcp
cd uipath_mcp
npm install
Step 2: Create UiPath Credentials
You need an External Application in UiPath Orchestrator to authenticate. For the full walkthrough with screenshots, see the UiPath External Applications documentation.
Summary:
- Log in to your UiPath Orchestrator (e.g.
https://cloud.uipath.com) - Navigate to Admin > External Applications
- Click Add Application
- Set Application Type to Confidential
- Under Scopes, add the following:
OR.ExecutionOR.QueuesOR.FoldersOR.JobsOR.AssetsOR.RobotsOR.MachinesOR.MonitoringOR.SettingsOR.AuditOR.License
- Click Add
- Copy the App ID (this is your Client ID) and App Secret (Client Secret)
Step 3: Configure Environment
Copy the example file and fill in your credentials:
cp .env.example .env
Edit .env:
UIPATH_URL=https://cloud.uipath.com/your-org/your-tenant
UIPATH_CLIENT_ID=your-client-id
UIPATH_CLIENT_SECRET=your-client-secret
UIPATH_TENANT_NAME=Default
If your Orchestrator requires a specific folder context, also set:
UIPATH_FOLDER_ID=123
Step 4: Build
npm run build
This compiles TypeScript into the dist/ directory.
Step 5: Verify
Run the tests to confirm everything is wired up:
npm test
Tests that require live credentials will skip automatically if .env is not
configured.
Step 6: Connect to an MCP Client
Pick the client you use and follow the corresponding section.
Claude Desktop
Open the Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Add this entry (replace the path with the absolute path to your clone):
{
"mcpServers": {
"uipath": {
"command": "node",
"args": ["C:/Users/you/uipath_mcp/dist/index.js"],
"env": {
"UIPATH_URL": "https://cloud.uipath.com/your-org/your-tenant",
"UIPATH_CLIENT_ID": "your-client-id",
"UIPATH_CLIENT_SECRET": "your-client-secret",
"UIPATH_TENANT_NAME": "Default"
}
}
}
}
Restart Claude Desktop. You should see the UiPath tools available.
Cursor IDE
Create or edit .cursor/mcp.json in your project root (or globally at
~/.cursor/mcp.json):
{
"mcpServers": {
"uipath": {
"command": "node",
"args": ["C:/Users/you/uipath_mcp/dist/index.js"],
"env": {
"UIPATH_URL": "https://cloud.uipath.com/your-org/your-tenant",
"UIPATH_CLIENT_ID": "your-client-id",
"UIPATH_CLIENT_SECRET": "your-client-secret",
"UIPATH_TENANT_NAME": "Default"
}
}
}
}
Restart Cursor. The UiPath tools will appear in the MCP tool list.
SSE / HTTP Mode (Multi-User)
Start the server in SSE mode:
macOS / Linux:
MCP_TRANSPORT=sse PORT=3000 npm start
Windows (PowerShell):
$env:MCP_TRANSPORT="sse"; $env:PORT="3000"; npm start
The server listens on http://localhost:3000 with these endpoints:
| Endpoint | Method | Description |
|---|---|---|
/health |
GET | Health check |
/sse |
GET | SSE stream for MCP clients |
/messages |
POST | MCP message handler |
/tools/:toolName |
POST | Direct REST tool invocation |
Clients must send UiPath credentials via headers:
curl -X POST http://localhost:3000/tools/uipath_get_folders \
-H "Content-Type: application/json" \
-H "X-UiPath-Url: https://cloud.uipath.com/your-org/your-tenant" \
-H "X-UiPath-Client-Id: your-client-id" \
-H "X-UiPath-Client-Secret: your-client-secret" \
-d '{"limit": 50}'
Step 7: Try It Out
Once connected, try these prompts in your MCP client:
- "Show me all UiPath folders"
- "List running jobs"
- "What queues are available?"
- "Get the dashboard summary"
- "Show failed jobs from the last 24 hours"
Configuration Reference
Required Environment Variables
| Variable | Description | Required | Example |
|---|---|---|---|
UIPATH_URL |
UiPath Orchestrator base URL | Yes | https://cloud.uipath.com/org/tenant |
UIPATH_CLIENT_ID |
External Application client ID | Yes | app-1234 |
UIPATH_CLIENT_SECRET |
External Application client secret | Yes | secret-1234 |
Optional Environment Variables
| Variable | Description | Default | Example |
|---|---|---|---|
UIPATH_TENANT_NAME |
Tenant name | Default |
Production |
UIPATH_FOLDER_ID |
Default folder ID | none | 123 |
UIPATH_DISABLE_SSL_VERIFY |
Disable SSL verification | 0 |
1 |
MCP_TRANSPORT |
Transport mode | stdio |
sse |
PORT |
HTTP port for SSE mode | 3000 |
8080 |
Available Tools
The server exposes UiPath Orchestrator functionality as MCP tools. Full details are in TOOLS.md.
Queue Tools
uipath_get_queue_definitions- List queue definitionsuipath_get_queue_items- Query queue items with filtersuipath_add_queue_item- Add items to queuesuipath_get_queue_stats- Queue statistics
Job Tools
uipath_get_jobs- List jobs with filtersuipath_get_job_details- Job details by IDuipath_start_job- Start a job by process nameuipath_stop_job- Stop a running jobuipath_get_job_stats- Job statistics
Robot and Machine Tools
uipath_get_robots- List robots with optional folder filteruipath_get_sessions- Active robot sessionsuipath_get_machines- Machine inventory
Asset, Log, and Audit Tools
uipath_get_assets- List assets in a folderuipath_get_robot_asset- Get asset by robot ID and nameuipath_get_robot_logs- Query robot logsuipath_get_audit_logs- Audit trail entries
Analytics, Scheduling, and Licensing Tools
uipath_get_faulted_jobs- Failed jobs with error detailsuipath_get_process_performance- Process performance analyticsuipath_get_folder_overview- Folder health overviewuipath_get_dashboard_summary- Dashboard summaryuipath_get_schedules- Process schedules and triggersuipath_get_consumption_license_stats- Consumption license usageuipath_get_license_stats- Traditional license usageuipath_get_licenses_runtime- Runtime license detailsuipath_get_licenses_named_user- Named-user license detailsuipath_get_count_stats- Entity countsuipath_get_sessions_stats- Robot session statistics
Available Resources
Read-only resources available via URIs:
uipath://foldersuipath://robotsuipath://machinesuipath://queuesuipath://jobs/recentuipath://releasesuipath://dashboarduipath://sessionsuipath://assetsuipath://schedules
Usage Examples
Example 1: Inspect Queue Items
Scenario: Review failed queue items for a specific queue.
Tool Call:
{
"tool": "uipath_get_queue_items",
"arguments": {
"queueName": "CustomerOrders",
"status": "Failed",
"limit": 25
}
}
Result: A list of failed items with their payloads and error details.
Example 2: Start a Job
Scenario: Launch a process with input arguments.
Tool Call:
{
"tool": "uipath_start_job",
"arguments": {
"processName": "InvoiceProcessor",
"inputArguments": {
"InvoiceId": "INV-10045"
}
}
}
Result: A job start response with the new job details.
Example 3: Get Robot Logs
Scenario: Review logs for a specific time window.
Tool Call:
{
"tool": "uipath_get_robot_logs",
"arguments": {
"startTime": "2025-01-01T00:00:00Z",
"endTime": "2025-01-01T02:00:00Z",
"limit": 100
}
}
Result: Log entries matching the time range and filters.
Development
Available Scripts
npm run dev # Run in development mode (tsx, auto-reload)
npm run build # Compile TypeScript to dist/
npm start # Run compiled server (requires build first)
npm test # Run test suite
npm run test:watch # Re-run tests on file changes
npm run test:coverage # Tests with coverage report
npm run lint # Run ESLint
npm run format # Format with Prettier
npm run inspect # Launch MCP Inspector for interactive testing
Project Structure
uipath_mcp/
src/
index.ts # MCP server, tool definitions, request routing
uipath-client.ts # UiPath Orchestrator API client
types.ts # TypeScript type definitions
tests/ # Test suite (Vitest)
docs/ # API and tool reference docs
examples/ # Example config files for Claude Desktop / Cursor
dist/ # Compiled output (generated by npm run build)
Known Limitations
- SSE mode requires clients to send UiPath credentials on each connection
- Tool execution is synchronous; long-running UiPath jobs are not streamed
- No built-in retry/backoff for transient UiPath API failures
- Limited pagination control for some composite analytics endpoints
- Resource URIs return fixed-size snapshots rather than live streams
Technical Shortcomings
- Token acquisition happens on-demand per client without shared caching
- No request throttling or circuit-breaking for bursty clients
- Error payloads are normalized but do not expose structured error codes
- SSE sessions are in-memory only and are lost on server restart
- No OpenTelemetry tracing or metrics export built in
Troubleshooting
Failed to Obtain Access Token
Verify your External Application has the required scopes:
- OR.Execution
- OR.Queues
- OR.Folders
- OR.Jobs
- OR.Assets
- OR.Robots
- OR.Machines
- OR.Monitoring
- OR.Settings
- OR.Audit
- OR.License
SSL Verification Errors
For on-premises Orchestrator, set UIPATH_DISABLE_SSL_VERIFY=1 if required.
Folder Access Errors
Set UIPATH_FOLDER_ID or pass folderId to tools to target a specific folder.
Debug Logging
export DEBUG=uipath-mcp:*
npm start
Security
- Store credentials in environment variables
- Do not log or commit secrets
- Scope External Application permissions to least privilege
License
MIT License - see LICENSE 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.