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

NameTypeRequiredDescription
task_idnumberyesThe task to release.
actorstringyesYou, as ‘session-name@host (lane)’.
reasonstringyesWhy you could not finish. The next worker reads this first.
abandonbooleannoSet 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.

Regenerated from source · build August 4, 2026