Uipath Orchestrator
БесплатноНе проверенEnables AI assistants to interact with UiPath Orchestrator through 23 tools, including managing jobs, queues, schedules, robots, and assets.
Описание
Enables AI assistants to interact with UiPath Orchestrator through 23 tools, including managing jobs, queues, schedules, robots, and assets.
README
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
- 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-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.
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Commit your changes
- Open a pull request
License
MIT — see LICENSE.
Установить Uipath Orchestrator в Claude Desktop, Claude Code, Cursor
unyly install uipath-orchestrator-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add uipath-orchestrator-mcp -- uvx uipath-orchestrator-mcpFAQ
Uipath Orchestrator MCP бесплатный?
Да, Uipath Orchestrator MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Uipath Orchestrator?
Нет, Uipath Orchestrator работает без API-ключей и переменных окружения.
Uipath Orchestrator — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Uipath Orchestrator в Claude Desktop, Claude Code или Cursor?
Открой Uipath Orchestrator на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Uipath Orchestrator with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
