Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"uipathrobotmcpserverwithhttp": {
"args": [
"-y",
"@modelcontextprotocol/inspector"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides integration with UiPath Robot, allowing you to list, configure, and execute UiPath processes through MCP-compatible clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@modelcontextprotocol/inspector' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
MCP Inspector is Vulnerable to Potential Command Execution via XSS When Connecting to an Untrusted MCP Server
An XSS flaw exists in the MCP Inspector local development tool when it renders a redirect URL returned by a remote MCP server. If the Inspector connects to an untrusted server, a crafted redirect can inject script into the Inspector context and, via the built-in proxy, be leveraged to trigger arbitrary command execution on the developer machine. Version 0.16.6 hardens URL handling/validation and prevents script execution. > Thank you to the following researchers for their reports and contributi
MCP Inspector proxy server lacks authentication between the Inspector client and proxy
Versions of MCP Inspector below 0.14.1 are vulnerable to remote code execution due to lack of authentication between the Inspector client and proxy, allowing unauthenticated requests to launch MCP commands over stdio. Users should immediately upgrade to version 0.14.1 or later to address these vulnerabilities. Credit: Rémy Marot <bughunters@tenable.com>
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for UiPathRobotMcpServerWithHttp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides integration with UiPath Robot, allowing you to list, configure, and execute UiPath processes through MCP-compatible clients.
UiPath Robot과 통합되는 Model Context Protocol (MCP) 서버로, MCP 호환 클라이언트를 통해 UiPath 프로세스를 나열하고 구성하며 실행할 수 있습니다.
Install .NET 8.0 LTS SDK from the official Microsoft website: 공식 Microsoft 웹사이트에서 .NET 8.0 LTS SDK를 설치하세요:
# Download from: https://dotnet.microsoft.com/download/dotnet/8.0
# Or use package managers:
# Windows (using winget)
winget install Microsoft.DotNet.SDK.8
# macOS (using Homebrew)
brew install --cask dotnet-sdk
# Ubuntu/Debian
wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update
sudo apt-get install -y dotnet-sdk-8.0
Verify installation / 설치 확인:
dotnet --version
# Should show 8.0.x
Install UiPath Robot on your machine. The MCP server communicates with the local UiPath Robot service. 컴퓨터에 UiPath Robot을 설치하세요. MCP 서버는 로컬 UiPath Robot 서비스와 통신합니다.
Download from: https://www.uipath.com/product/robot
This MCP server integrates with UiPath Attended Robot, which means: 이 MCP 서버는 UiPath Attended Robot과 통합되며, 이는 다음을 의미합니다:
Each UiPath process becomes an MCP tool with the following mapping: 각 UiPath 프로세스는 다음 매핑으로 MCP 도구가 됩니다:
Best Practices for AI Integration / AI 통합을 위한 모범 사례:
When developing UiPath processes for AI integration, consider these naming and description guidelines: AI 통합을 위한 UiPath 프로세스를 개발할 때 다음 명명 및 설명 지침을 고려하세요:
✅ Good Examples / 좋은 예시:
- Name: "ExtractInvoiceData"
Description: "Extract structured data from PDF invoices including vendor, amount, and date"
- Name: "SendEmailNotification"
Description: "Send automated email notifications with customizable subject and body content"
- Name: "ProcessExcelReport"
Description: "Generate monthly sales reports from Excel data with charts and summaries"
❌ Avoid / 피해야 할 것:
- Name: "Process1"
... [View full README on GitHub](https://github.com/javaos74/UiPathRobotMcpServerWithHttp#readme)