tasks_create
Create a new task in a project by specifying a title and project ID. Optionally set due dates, priority, assignees, labels, and completion status.
Instructions
Create a new task in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID to create the task in (required) | |
| title | Yes | Task title (required) | |
| description | No | Task description | |
| dueDate | No | Due date (ISO 8601 format, e.g., '2024-12-31T23:59:59Z') | |
| startDate | No | Start date (ISO 8601 format) | |
| endDate | No | End date (ISO 8601 format) | |
| priority | No | Priority level (higher = more important) | |
| done | No | Whether the task is completed | |
| color | No | Hex color for the task | |
| percentDone | No | Completion percentage (0-1) | |
| assignees | No | Array of user IDs to assign | |
| labels | No | Array of label IDs to add |