agenttools
MCP Tool

tasks_write

Create, update, or delete a task. `create` requires `name`; `update` and `delete` require `id`.

Input schema

api_keystring
API key for authentication
action"create" | "update" | "delete"required
The operation to perform
idstring
Task ID (required for update/delete)
namestring
Task name (required for create)
descriptionstring | null
Task description
priority"low" | "medium" | "high" | "critical"
Task priority (default low on create)
due_atinteger | null
Due date as Unix timestamp, or null to clear
labelsstring[] | null
Labels for grouping/filtering (replaces the existing set), or null to clear

Example call

tools/call params
{
  "name": "tasks_write",
  "arguments": {
    "api_key": "agt_…",
    "action": "create"
  }
}