create_task
Generate and manage tasks on the MCP Orchestrator Server by defining unique IDs, descriptions, and task dependencies for efficient task orchestration.
Instructions
Create a new task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependencies | No | IDs of tasks that must be completed first | |
description | Yes | Description of the task | |
id | Yes | Unique identifier for the task |
Input Schema (JSON Schema)
{
"properties": {
"dependencies": {
"description": "IDs of tasks that must be completed first",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "Description of the task",
"type": "string"
},
"id": {
"description": "Unique identifier for the task",
"type": "string"
}
},
"required": [
"id",
"description"
],
"type": "object"
}