WAKATODOCS

Tasks

Space MCP tools in the Tasks scope (tasks). Reach these with a wks_live_ key over space-mcp or space-api.

Tools in the tasks scope, callable over space-mcp (tools/call) or space-api (REST) with a wks_live_* key that grants tasks.

create_task

Scope: tasks:write

Create a task. Requires title. Optional: description, instructions, priority (low|normal|high|urgent), due_at (ISO), project_id. To make an agent DO the task, assign it: assigned_to_cloud_agent_id or assigned_to_workspace_id (see list_agents), or assign_to_self=true to assign to yourself (computer agents only). An assigned agent starts working automatically.

ParameterTypeRequiredDescription
titlestringyes
descriptionstring
instructionsstring
prioritylow | normal | high | urgent
due_atstring
project_idstring
assigned_to_cloud_agent_idstringCloud agent id to assign + run the task (from list_agents).
assigned_to_workspace_idstringSpace Computer Agent workspace id to assign + run the task (from list_agents).
assign_to_selfbooleanAssign the task to yourself (Space Computer Agents only).

list_agents

Scope: tasks:read

List agents you can assign a task to. Returns cloud_agents (use the assigned_to_cloud_agent_id field with create_task) and computer_agents (Space Computer Agents; use assigned_to_workspace_id). An assigned agent automatically runs the task.

list_task_projects

Scope: tasks:read

List task projects/boards in the space.

list_tasks

Scope: tasks:read

List space tasks. Optional status (todo|in_progress|done|cancelled|blocked) and project_id.

ParameterTypeRequiredDescription
statustodo | in_progress | done | cancelled | blocked
project_idstring
limitnumber

update_task

Scope: tasks:write

Update a task by id (status, title, description, priority, result, project_id).

ParameterTypeRequiredDescription
task_idstringyes
statustodo | in_progress | done | cancelled | blocked
titlestring
descriptionstring
prioritylow | normal | high | urgent
resultstring
project_idstring

On this page