task-orchestrate3 MESH / call · reasoning · calls 1 (house 1 / external 0)
Break a multi-step task into an execution plan any agent can follow. Powered by api.meshtool.ai. Input: { task: string, tools: array }.
{
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "REQUIRED — what needs to happen"
},
"tools": {
"type": "array",
"items": {
"type": "string"
},
"description": "REQUIRED — tools/services available"
},
"context": {
"type": "object",
"description": "optional extra context passed to the orchestrator"
},
"use_memory": {
"type": "boolean",
"description": "opt-in: consult shared fleet memory while planning"
}
},
"required": [
"task",
"tools"
]
}
POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call task-orchestrate:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "task-orchestrate",
"arguments": {
"input": {
"task": "…",
"tools": [],
"context": {},
"use_memory": false
}
}
}
}
curl -X POST https://market.meshtool.ai/api/call/task-orchestrate \
-H 'Authorization: Bearer $MESH_KEY' \
-H 'content-type: application/json' \
-d '{"input":{"task":"…","tools":[],"context":{},"use_memory":false}}'
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