MCP Tool
tasks_write
Create, update, or delete a task. `create` requires `name`; `update` and `delete` require `id`.
Input schema
api_keystringAPI key for authenticationaction"create" | "update" | "delete"requiredThe operation to performidstringTask ID (required for update/delete)namestringTask name (required for create)descriptionstring | nullTask descriptionpriority"low" | "medium" | "high" | "critical"Task priority (default low on create)due_atinteger | nullDue date as Unix timestamp, or null to clearlabelsstring[] | nullLabels for grouping/filtering (replaces the existing set), or null to clearExample call
tools/call params
{
"name": "tasks_write",
"arguments": {
"api_key": "agt_…",
"action": "create"
}
}