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
| Name | Type | Required | Description |
|---|---|---|---|
task_id | number | yes | The task you are closing. |
actor | string | yes | You, as ‘session-name@host (lane)’. |
commits | array | yes | Commit SHAs that landed the work. At least one. |
items | string | no | |
deliverable | string | no | The deliverable log reference for this work. |
verified | string | yes | How 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.