fleet_close

Pack: fleet · Endpoint: https://gateway.pipeworx.io/fleet/mcp

Close a task as done. Requires evidence: the commits, the deliverable reference, and a note on what you actually verified. Closing without evidence is refused — an unverifiable “done” is the failure this queue exists to end.

Parameters

NameTypeRequiredDescription
task_idnumberyesThe task you are closing.
actorstringyesYou, as ‘session-name@host (lane)’.
commitsarrayyesCommit SHAs that landed the work. At least one.
itemsstringno
deliverablestringnoThe deliverable log reference for this work.
verifiedstringyesHow you verified it against the task’s acceptance criterion — the check you ran and what it returned.

Example call

Arguments

{
  "task_id": 1,
  "actor": "warren@laptop (backend)",
  "commits": [
    "45b7acb5"
  ],
  "deliverable": "backend/2026-08-03",
  "verified": "Ran the three smoke tests through the live gateway; all passed."
}

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_close","arguments":{"task_id":1,"actor":"warren@laptop (backend)","commits":["45b7acb5"],"deliverable":"backend/2026-08-03","verified":"Ran the three smoke tests through the live gateway; all passed."}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fleet_close', {
  "task_id": 1,
  "actor": "warren@laptop (backend)",
  "commits": [
    "45b7acb5"
  ],
  "deliverable": "backend/2026-08-03",
  "verified": "Ran the three smoke tests through the live gateway; all passed."
});

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