Timezone planner
Time zone conversion, business day calculation, and cron schedule preview - scheduling in one pass.
3 tools run server-side in one request. You pay once, settle once, and get a single response - no orchestration, no per-step payments, and a partial-success envelope if any step fails. USDC over x402 on any supported chain.
When to use this pack
An agent coordinating across time zones needs to convert a time, count business days between dates, and preview when a cron job will fire. Three scheduling primitives bundled together for meeting planners, deployment schedulers, and coordination agents.
Tools in this pack
All 3 run inside the single $0.050 call above. Each is also callable on its own if you only need one part.
- Time convert POST /api/time-convert Convert between epoch (s or ms), ISO 8601, and any IANA timezone. Give a value, get every representation back.
- Business days POST /api/business-days Count business days (Mon–Fri) between two dates, inclusive of the start, exclusive of the end. Optional list of holiday dates to skip.
- Cron next runs POST /api/cron-next Parse a 5-field cron expression and return the next N run times (UTC).
Workflow
- Call time-convert with the time, from timezone, and to timezone to get the converted time.
- Call business-days with start and end dates to count working days in the range.
- Call cron-next with a sample expression to preview upcoming schedule occurrences.
Call it directly
Any x402 client pays the 402 and gets the whole workflow back in one response:
npx agent402-client call timezone-planner {"time":"2026-06-11T10:00:00","from":"America/New_York","to":"Asia/Tokyo"}
Run it in Claude
claude mcp add agent402 -s user -- npx -y agent402-mcp@latest
Then paste this prompt into Claude:
Plan a meeting using Agent402's timezone-planner skill pack: Convert 2026-06-11T10:00:00 from America/New_York to Asia/Tokyo. Also check how many business days are between now and that date, and preview the next 5 occurrences of a weekly Monday 10am cron.