Docs/MCP Tools/hivemind_tasks

hivemind_tasks

hivemind_tasks

View derived tasks from the event log. Tasks are computed from task.created, task.completed, task.failed, and task.blocked events.

Parameters

ParameterTypeRequiredDescription
statusstringNoFilter by status: "active", "completed", "failed", "blocked"
channelstringNoFilter by channel
sincestringNoISO 8601 datetime lower bound
limitnumberNoMax results (default 20)

Example

hivemind_tasks(status: "active")

Returns all currently active tasks — tasks that have a task.created event but no corresponding task.completed or task.failed event.

Example with Filters

hivemind_tasks(status: "completed", channel: "backend", limit: 10)