next_runs
Pack: crontab · Endpoint: https://gateway.pipeworx.io/crontab/mcp
Compute the next N run times (UTC ISO-8601) for a cron expression. Optionally start from a given time.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
expression | string | yes | A cron expression or @alias. |
count | number | no | How many upcoming runs to return (1-50, default 5). |
from | string | no | Optional ISO-8601 start time (default: now). |
Example call
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":"next_runs","arguments":{}}}'
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.