manage_launch_task
Create, update, or delete launch tasks. Add tasks with name and section, mark complete, assign to users, or remove tasks by ID.
Instructions
Create, update, or delete a launch task.
USE WHEN: "Add task", "Mark complete", "Assign task", "Delete task" Actions: create (name+section_id), update (task_id), delete (task_id) Returns the created/updated task object, or confirmation on delete. FAILS WHEN: create without name or section_id, update/delete without task_id (get IDs from get_launch_tasks). Use list_users to get valid assigned_user_id values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Task name | |
| action | Yes | create, update, or delete | |
| status | No | Task status | |
| task_id | No | Task ID (for update/delete) | |
| due_date | No | YYYY-MM-DD | |
| launch_id | Yes | Launch ID | |
| section_id | No | Section ID (for create) | |
| description | No | Task description | |
| assigned_user_id | No | User ID to assign (get from list_users) |