Uipath Orchestrator — the complete, unedited output of the deterministic mcptrustchecker engine v1.8.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.
{
"tool": {
"name": "mcptrustchecker",
"version": "1.8.0",
"methodologyVersion": "mcptrustchecker-1.8"
},
"target": {
"id": "uipath-orchestrator-mcp",
"source": {
"kind": "package",
"origin": "uipath-orchestrator-mcp"
},
"server": {
"name": "uipath-orchestrator-mcp"
}
},
"grade": "B",
"score": {
"score": 89,
"threatScore": 100,
"grade": "B",
"band": "B",
"categorySubtotals": {
"injection": 0,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "client",
"term": "capability-exposure",
"level": "critical",
"label": "capability blast radius (critical) — client exposure if the model is manipulated",
"appliedPenalty": 10
},
{
"kind": "client",
"term": "verification-discount",
"level": "repo",
"label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
"appliedPenalty": 1
},
{
"kind": "client",
"term": "coverage-honesty",
"level": "source",
"label": "inspection depth (source) — how much of the target the scan could see",
"appliedPenalty": 0
}
],
"gatesFired": [],
"methodologyVersion": "mcptrustchecker-1.8"
},
"capability": {
"level": "critical",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"can send data / act on an external service",
"reads sensitive or local data",
"has a read → egress path (a data-exfiltration surface)",
"can execute shell commands or code",
"untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)",
"untrusted input can reach code execution"
],
"tags": [
"untrusted-input",
"sensitive-source",
"external-sink",
"code-exec"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (132 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
]
},
"findings": [
{
"ruleId": "MTC-FLOW-002",
"title": "Completed toxic-flow trifecta across tools",
"category": "exfiltration",
"severity": "critical",
"confidence": "strong",
"description": "This server (without client built-ins) exposes a complete data-exfiltration chain: uipath_get_bucket_read_uri → uipath_delete_bucket_file → uipath_create_webhook. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.",
"remediation": "Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.",
"location": {
"kind": "flow",
"name": "uipath_get_bucket_read_uri → uipath_delete_bucket_file → uipath_create_webhook"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"uipath_get_role_user_ids",
"uipath_get_job_trigger_payload",
"uipath_get_job_details",
"uipath_get_bucket_read_uri"
],
"sources": [
"uipath_read_bucket_file",
"uipath_list_bucket_files",
"uipath_get_bucket_read_uri",
"uipath_delete_bucket_file"
],
"sinks": [
"uipath_list_webhooks",
"uipath_get_webhook",
"uipath_list_webhook_event_types",
"uipath_create_webhook",
"uipath_update_webhook",
"uipath_delete_webhook",
"uipath_ping_webhook",
"uipath_trigger_custom_webhook_event"
],
"path": [
"uipath_get_bucket_read_uri",
"uipath_delete_bucket_file",
"uipath_create_webhook"
],
"edges": [
{
"from": "uipath_get_bucket_read_uri",
"to": "uipath_delete_bucket_file",
"kind": "agent-mediated"
},
{
"from": "uipath_delete_bucket_file",
"to": "uipath_create_webhook",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/src/cli.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/src/cli.js:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/src/cli.js"
},
"evidence": "child_process",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/src/cli.js",
"line": 1
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/src/setup/secure-storage.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/src/setup/secure-storage.js:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/src/setup/secure-storage.js"
},
"evidence": "child_process",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/src/setup/secure-storage.js",
"line": 1
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"path\" on \"uipath_read_bucket_file\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"uipath_read_bucket_file\" takes a path parameter \"path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "uipath_read_bucket_file",
"field": "inputSchema.properties.path"
},
"data": {
"param": "path"
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"directory\" on \"uipath_list_bucket_files\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"uipath_list_bucket_files\" takes a path parameter \"directory\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "uipath_list_bucket_files",
"field": "inputSchema.properties.directory"
},
"data": {
"param": "directory"
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"path\" on \"uipath_get_bucket_read_uri\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"uipath_get_bucket_read_uri\" takes a path parameter \"path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "uipath_get_bucket_read_uri",
"field": "inputSchema.properties.path"
},
"data": {
"param": "path"
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"path\" on \"uipath_delete_bucket_file\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"uipath_delete_bucket_file\" takes a path parameter \"path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "uipath_delete_bucket_file",
"field": "inputSchema.properties.path"
},
"data": {
"param": "path"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"uipath_get_role_user_ids",
"uipath_get_job_trigger_payload",
"uipath_get_job_details",
"uipath_get_bucket_read_uri"
],
"sensitiveSource": [
"uipath_read_bucket_file",
"uipath_list_bucket_files",
"uipath_get_bucket_read_uri",
"uipath_delete_bucket_file"
],
"externalSink": [
"uipath_list_webhooks",
"uipath_get_webhook",
"uipath_list_webhook_event_types",
"uipath_create_webhook",
"uipath_update_webhook",
"uipath_delete_webhook",
"uipath_ping_webhook",
"uipath_trigger_custom_webhook_event"
],
"selfContained": false,
"path": [
"uipath_get_bucket_read_uri",
"uipath_delete_bucket_file",
"uipath_create_webhook"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: uipath_get_bucket_read_uri → uipath_delete_bucket_file → uipath_create_webhook."
}
],
"capabilities": [
{
"tool": "uipath_list_users",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_user",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_user_by_key",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_current_user",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_current_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_validate_users",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_directory_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_search_directory_objects",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_roles",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_users_for_role",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_role_user_ids",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "uipath_list_folder_users",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_user_folder_roles",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_assign_roles_to_user",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_assign_users_to_folders",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_toggle_user_role",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_alerts",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_unread_alert_count",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_mark_alerts_as_read",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_raise_process_alert",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_audit_logs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_export_audit_logs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_audit_log_details",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_calendars",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_calendar",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_calendar",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_calendar",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_calendar",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_calendar_exists",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_folders",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_search_folders",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_job_triggers",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_job_triggers_by_job_key",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_job_trigger_wait_events",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_external_job_trigger",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_job_trigger_payload",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "uipath_deliver_job_trigger_payload",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_processes",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_start_job",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_stop_job",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_restart_job",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_robot_logs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_robot_log_total_count",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_job_details",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "uipath_list_execution_media",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_health_check",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_dashboard_summary",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_running_jobs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_faulted_jobs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_error_logs",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_asset_value",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_read_bucket_file",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"parameter \"path\""
]
}
},
{
"tool": "uipath_add_queue_items_bulk",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_resume_job",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_queue_definition",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_definition",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_definition_by_key",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_add_queue_item",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_queue_definitions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_queue_definition",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_queue_definition",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_queue_items",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_item_processing_history",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_queue_item_comments",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_queue_item_comment",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_queue_item_comment",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_queue_item_comment",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_item_comments_history",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_queue_item_events",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_item_events_history",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queues_processing_status",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_queue_processing_records",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_set_queue_item_progress",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_releases",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_release",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_release",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_release",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_release",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_upload_process_package",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_process_package",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_release_to_latest_package",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_release_to_specific_package",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_rollback_release",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_assets",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_buckets",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_asset",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_asset",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_asset_by_name",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_bucket_files",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "uipath_get_bucket_read_uri",
"tags": [
"untrusted-input",
"sensitive-source"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
],
"sensitive-source": [
"parameter \"path\""
]
}
},
{
"tool": "uipath_upload_bucket_file",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_bucket_file",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"parameter \"path\""
]
}
},
{
"tool": "uipath_list_robot_sessions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_robots",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_machines",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_machine",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_assigned_machines",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_folder_runtimes",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_machine_session_runtimes",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_folder_machine_session_runtimes",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_robot_stats",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_jobs_stats",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_toggle_robot_enabled_status",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_inactive_unattended_sessions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_update_machines_to_folder_associations",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_status",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_schedules",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_schedule",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_set_schedule_enabled",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_delete_schedule",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_tasks",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_task",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_task_by_key",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_tasks_across_folders",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_task_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_task_users",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_generic_task",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_get_generic_task_data",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_save_generic_task_data",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_complete_generic_task",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_save_and_reassign_generic_task",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_task_notes",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_create_task_note",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_task_activities",
"tags": [],
"reasons": {}
},
{
"tool": "uipath_list_webhooks",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_get_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_list_webhook_event_types",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_create_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_update_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_delete_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_ping_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "uipath_trigger_custom_webhook_event",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
}
],
"surfaceDigest": "c5b9499b1b51a79aa290040bc94b8176dfa4b244ffbd5f422cabebbe506efe43",
"stats": {
"tools": 132,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 2,
"medium": 0,
"low": 4,
"info": 0
}
}
}