MCP CompatibledeterministicUiPath

Config Manager

Manages UiPath REFramework Config.xlsx files following the canonical 3-sheet pattern for Settings, Constants, and Assets. Validates configuration structure, detects missing or duplicated keys, enforces type consistency, and generates config files from templates. Supports bulk operations for multi-environment configuration management across Dev, UAT, and Prod.

uipathconfigreframeworkgovernancemanagement
Version
v1.0.0

Features

  • 3-sheet pattern enforcement
  • Key validation and deduplication
  • Multi-environment support
  • Config template generation
  • Type consistency checks

Input Schema

{
  "type": "object",
  "properties": {
    "orchestrator_url": {
      "type": "string",
      "description": "UiPath Orchestrator base URL"
    },
    "auth_token": {
      "type": "string",
      "description": "Bearer token for authentication"
    }
  },
  "required": [
    "orchestrator_url",
    "auth_token"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failure",
        "escalation"
      ]
    },
    "result": {
      "type": "object",
      "description": "Skill-specific output data"
    },
    "evidence": {
      "type": "object",
      "description": "Audit trail and evidence pack"
    }
  },
  "required": [
    "status",
    "result"
  ]
}

Category

governance

Compatibility

uipath