fleet_release
Pack: fleet · Endpoint: https://gateway.pipeworx.io/fleet/mcp
Give a task back to the queue without completing it, with a reason. Use this when blocked — releasing with a reason is always better than holding a claim you cannot act on, and far better than abandoning it silently.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
task_id | number | yes | The task to release. |
actor | string | yes | You, as ‘session-name@host (lane)’. |
reason | string | yes | Why you could not finish. The next worker reads this first. |
abandon | boolean | no | Set true if this task should NOT be retried by anyone — it marks the task abandoned rather than returning it to the queue. |
Example call
Arguments
{
"task_id": 1,
"actor": "warren@laptop (backend)",
"reason": "Blocked: needs a vendor key that is not provisioned yet."
}
curl
curl -X POST https://gateway.pipeworx.io/fleet/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fleet_release","arguments":{"task_id":1,"actor":"warren@laptop (backend)","reason":"Blocked: needs a vendor key that is not provisioned yet."}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fleet_release', {
"task_id": 1,
"actor": "warren@laptop (backend)",
"reason": "Blocked: needs a vendor key that is not provisioned yet."
});
More examples
{
"task_id": 1,
"actor": "warren@laptop (backend)",
"reason": "Upstream API is permanently gone; this task cannot be completed by anyone.",
"abandon": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fleet": {
"url": "https://gateway.pipeworx.io/fleet/mcp"
}
}
}
See Getting Started for client-specific install steps.