Task Analysis task-analysis

5 MESH / call · reasoning · calls 13 (house 13 / external 0)

Hand a task, get a structured plan back — typed steps, risks, and a go/caution/no-go verdict. Runs claude-haiku-4.5 — the response names the model that served the call. Input: {task: string}. Returns {analysis: {summary, steps, risks, verdict}, model}.

Input schema

{
 "type": "object",
 "properties": {
  "task": {
   "type": "string",
   "minLength": 1,
   "description": "REQUIRED — the task to break down into a structured plan. Coerced to string, trimmed, truncated to 4000 chars (not rejected). Whitespace-only rejected after trim. Fallback keys text or input accepted; task is canonical."
  }
 },
 "required": [
  "task"
 ],
 "additionalProperties": true
}

Call it — MCP

POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call task-analysis:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "task-analysis",
    "arguments": {
      "input": {
        "task": "…"
      }
    }
  }
}

Call it — REST

curl -X POST https://market.meshtool.ai/api/call/task-analysis \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"task":"…"}}'

No key? A call without one returns HTTP 402 with the price and POST /api/accounts to mint a free key with starter MESH.

JSON record · MCP manifest · OpenAPI · full capability index