Skip to main content
Glama

task-orchestrator-mcp

by 108yen

createTask

Initiate task workflows with a hierarchical structure. Define tasks by name, optional description, and parent ID. Specify position using insertIndex. Must call startTask and completeTask to process and finalize tasks.

Instructions

Create a new task with optional parent and index positioning.

This tool initiates a new workflow for handling user requests. The workflow is as follows:

  1. Create tasks with the provided name and optional description. Tasks are organized in a hierarchical structure where subtasks can be created by specifying parentId.
  2. Tasks are ordered by their position in the parent's tasks array. Use insertIndex to specify position (defaults to end).
  3. After task creation, you MUST call the startTask tool to begin processing the task.
  4. When the task is completed, call the completeTask tool with the task ID and resolution details.
  5. If the following task is assigned, execute it by calling the startTask tool again.
  6. Repeat this cycle until all tasks are completed.

Input Schema

NameRequiredDescriptionDefault
descriptionNoTask description (optional)
insertIndexNoIndex position within parent's tasks array (optional, defaults to end of array)
nameYesTask name (required)
parentIdNoParent task ID for hierarchical organization (optional)
tasksNoArray of subtasks to create simultaneously (optional)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Task description (optional)", "type": "string" }, "insertIndex": { "description": "Index position within parent's tasks array (optional, defaults to end of array)", "type": "number" }, "name": { "description": "Task name (required)", "type": "string" }, "parentId": { "description": "Parent task ID for hierarchical organization (optional)", "type": "string" }, "tasks": { "description": "Array of subtasks to create simultaneously (optional)", "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "name": { "type": "string" }, "tasks": { "items": { "$ref": "#/properties/tasks/items" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "type": "array" } }, "required": [ "name" ], "type": "object" }
Install Server

Other Tools from task-orchestrator-mcp

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/108yen/task-orchestrator-mcp'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server