tasks_create
Creates a new task with subject, optional assignee, due date, project association, and subtask linking for managing work items.
Instructions
Add a new task to a project or as a standalone task.
Creates a task with subject, optional description, assignee, due date, and project association.
Workflow tips:
Subject is required (task title)
Assign to a user with assignee_id
Associate with a project using project_id
Create subtasks using parent_task_id
Set due_date for deadline tracking
Tasks default to not done (done = 0)
Common use cases:
Create project task: { "subject": "Review proposal", "project_id": 123, "assignee_id": 456 }
Create subtask: { "subject": "Research options", "parent_task_id": 789 }
Create with due date: { "subject": "Send report", "due_date": "2024-12-31" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | Task subject/title | |
| project_id | No | ID of the project this task belongs to | |
| assignee_id | No | ID of the user assigned to this task | |
| parent_task_id | No | ID of the parent task if this is a subtask | |
| done | No | Whether the task is done (0 = not done, 1 = done) | |
| due_date | No | Due date in YYYY-MM-DD format | |
| description | No | Task description |