Skip to main content
Create a structured project task source file

Tool details

FieldValue
Namecreate_task
GroupJobs

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug that owns the new task."
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "description": "Stable task identifier used in MCP and project source."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Human-readable task name."
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Optional short description of what the task does."
    },
    "schedulable": {
      "type": "boolean",
      "description": "Whether the task can be allowed in schedulers and cron definitions."
    },
    "source_target_kind": {
      "type": "string",
      "description": "The source target kind associated with this record."
    },
    "target_branch_id": {
      "anyOf": [
        {
          "type": "string",
          "format": "uuid",
          "description": "The target branch id associated with this record."
        },
        {
          "type": "null",
          "description": "Provide the target branch id."
        }
      ],
      "description": "The target branch id associated with this record."
    }
  },
  "required": [
    "project_reference",
    "id",
    "name"
  ],
  "additionalProperties": false,
  "description": "Input schema for creating a task definition.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Task identifier."
    },
    "name": {
      "type": "string",
      "description": "Human-readable task name."
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Short description of what the task does."
    },
    "target": {
      "type": "string",
      "description": "Execution target that implements the task."
    },
    "source_path": {
      "type": "string",
      "description": "Source file path where the task definition lives."
    },
    "source": {
      "type": "string",
      "description": "Task source code or structured document content."
    },
    "schedulable": {
      "type": "boolean",
      "description": "Whether the task can be used from schedulers."
    },
    "edit_mode": {
      "type": "string",
      "enum": [
        "structured",
        "source_only"
      ],
      "description": "Editing mode supported for the task definition."
    },
    "source_only_reasons": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "One source only reason item associated with this record."
      },
      "description": "Reasons why the task can only be edited as raw source, when applicable."
    }
  },
  "required": [
    "id",
    "name",
    "description",
    "target",
    "source_path",
    "source",
    "schedulable",
    "edit_mode",
    "source_only_reasons"
  ],
  "additionalProperties": false,
  "description": "Task definition including editable source content.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}