uipath-orchestrator-mcp

uipath-orchestrator-mcp

Enables AI assistants to interact with UiPath Orchestrator through 23 tools, including managing jobs, queues, schedules, robots, and assets.

Category
Visit Server

README

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 get_orchestrator_summary
Folders list_folders
Jobs list_jobs, get_job, start_job, stop_job, get_jobs_across_folders, get_job_logs
Processes list_releases
Queues list_queue_definitions, get_queue_items, count_queue_items, add_queue_item, bulk_add_queue_items, delete_queue_item, retry_queue_item
Schedules list_schedules, enable_schedule, disable_schedule
Robots & Machines list_robots, list_machines
Assets list_assets, get_asset

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

  1. In UiPath Automation Cloud, go to Admin > External Applications
  2. Create a new application with Application Scopes (not user scopes)
  3. Grant the scopes listed above
  4. Copy the Client ID and Client Secret

Installation

Option 1: pip (stdio transport — recommended for local use)

pip install uipath-orchestrator-mcp

Option 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-mcp

Configuration

Copy .env.example to .env and fill in your credentials:

cp .env.example .env
Variable Required Description
UIPATH_CLIENT_ID Yes OAuth client ID from your external application
UIPATH_CLIENT_SECRET Yes OAuth client secret
UIPATH_TENANT_NAME Yes Your UiPath tenant name (e.g. DefaultTenant)
UIPATH_ORG_NAME Yes Your UiPath organization name (from the cloud URL)
UIPATH_SCOPES No Space-separated OAuth scopes (default: all required scopes)
MCP_TRANSPORT No stdio (default), streamable-http (recommended for HTTP), or sse (legacy HTTP)
MCP_HOST No Host to bind when using an HTTP transport (default: 0.0.0.0)
MCP_PORT No Port to bind when using an HTTP transport (default: 8000)
MCP_LOG_LEVEL No Logging level: DEBUG, INFO, WARN, ERROR (default: INFO)

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-mcp

HTTP transports (Docker or remote server)

Two HTTP-based transports are supported for remote or containerised deployments:

Transport MCP_TRANSPORT value Endpoint Notes
Streamable HTTP streamable-http http://host:8000/mcp Recommended — newer MCP spec standard
SSE sse http://host:8000/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-mcp

Then 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 credentials

Run the server locally (stdio):

poetry run uipath-orchestrator-mcp

Project 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.toml

Contributing

Contributions are welcome. Please open an issue before submitting a pull request for significant changes.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Commit your changes
  4. Open a pull request

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured