describe_cron

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

Parse and validate a cron expression (5 fields or an @alias) and describe it in plain English. Returns the parsed fields and whether it is valid.

Parameters

NameTypeRequiredDescription
expressionstringyesA cron expression, e.g. “0 9 * * 1-5” or “@daily”.

Example call

Arguments

{
  "expression": "0 9 * * 1-5"
}

curl

curl -X POST https://gateway.pipeworx.io/crontab/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"describe_cron","arguments":{"expression":"0 9 * * 1-5"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('describe_cron', {
  "expression": "0 9 * * 1-5"
});

More examples

{
  "expression": "@daily"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "crontab": {
      "url": "https://gateway.pipeworx.io/crontab/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026