MCP CompatibledeterministicUiPath

Project Scaffolder

Scaffolds production-ready UiPath project structures from templates. Supports three project types: simple sequence workflows, REFramework dispatcher processes for queue population and transaction discovery, and REFramework performer processes with retry logic and exception handling. Each scaffold includes project.json, Config.xlsx with 3-sheet pattern, Main.xaml, and all required framework files.

uipathscaffoldreframeworkprojectdevelopment
Version
v1.0.0

Features

  • 3 project templates
  • REFramework dispatcher scaffold
  • REFramework performer scaffold
  • Config.xlsx generation
  • Best-practice file structure

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

development

Compatibility

uipath