entherium_create_task
Это содержимое пока не доступно на вашем языке.
Create a TASK for a team member. assignee is a person’s NAME — it is resolved to
that user; an unknown or ambiguous name is REJECTED (never silently unassigned). spec_ref
TARGETS the task at a platform feature by its SPEC id (“SPEC-NNN”) so the work stays tied to
the right feature context — pass it whenever the task is about a known spec; an unknown spec
id is REJECTED. Needs the manage_task capability. Returns {“accepted”: true, “task_id”:
Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | |
description | string | null | no | |
assignee | string | null | no | |
spec_ref | string | null | 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_create_task", "arguments": { "title": "<title>" } }}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 |