entherium_list_tasks
Это содержимое пока не доступно на вашем языке.
READ the task board — check what work already exists and its STATUS. Call this BEFORE
creating a task, to avoid filing a duplicate of something already tracked. Filter by
status (“open” | “closed”) and/or assignee NAME (Pavel / Ilya). Returns {“total”: N,
“tasks”: [{task_id, title, status, assignee, spec_ref, description, updated_at, note_count,
last_note_at}]}. note_count>0 means the task carries a note/decision in its log that is
NOT shown here — call entherium_get_task before drawing any conclusion about that task.
Needs the manage_task capability.
Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
status | string | null | no | |
assignee | string | null | no | |
limit | integer | no |
Example call
Section titled “Example call”Send inside an initialized MCP session (see Connecting):
{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "entherium_list_tasks", "arguments": {} }}If it fails
Section titled “If it fails”| Symptom | Cause | Action |
|---|---|---|
401 | Token missing/expired | Re-issue via POST /auth/agent-token; a new token replaces your grants |
403 / capability error | Your token lacks the capability or the contract grant | Check my_capabilities first; ask the owner for the grant |