Ship On Friday

live EntertainmentGenerator

Check whether you should ship on Friday. The answer is always no.

1 tools
0ms auth
free tier 50 calls/day

Tools

ship_on_friday_check

Check whether you should ship on Friday. The answer is always no. Returns a rotating reason, risk level (always catastrophic), suggested day, and on-call sympathy score.

Parameters
Name Type Description
deploy_type opt string Type of deploy: hotfix, feature, or refactor
team_size opt number Size of your team
is_friday opt boolean Override Friday detection (auto-detected by default)
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ship-on-friday/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ship-on-friday/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ship_on_friday_check","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ship_on_friday_check", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("check whether you should ship on friday");