World clock, timezone conversion, DST-aware date math & cross-zone meeting scheduling.
A production MCP server that gives AI agents accurate, DST-aware time superpowers. Convert times across IANA timezones, get the world clock, resolve a city or country to its timezone, do calendar-aware date math, check public holidays and find meeting slots that work across participants in different zones. Nine tools, no account or API key. Also available as pay-per-call x402 HTTP endpoints (USDC on Base).
Add the remote MCP server to any client, or call the x402 HTTP endpoint directly.
Claude / Cursor / Windsurf
claude mcp add --transport http timezone-toolkit https://api.agishub.com/mcp/timezonemcp.json
{
"mcpServers": {
"timezone-toolkit": {
"url": "https://api.agishub.com/mcp/timezone"
}
}
}x402 HTTP (pay-per-call)
curl -X POST https://api.agishub.com/paid/now-in \
-H "Content-Type: application/json" \
-d '{ "timezone": "Asia/Tokyo" }'
# → 402 Payment Required, then pay per call in USDC on Base (x402)| now_in | Current local time in any IANA timezone, with UTC offset, abbreviation and DST flag. |
| convert_timezone | Convert a datetime between timezones. Accepts ISO 8601 or natural language ('next Tuesday 3pm'). |
| convert_batch | Convert a single instant into many timezones at once — ideal for world-clock views. |
| tz_offset | Exact UTC offset at a given instant, DST-aware (handles India +05:30, Nepal +05:45). |
| list_timezones | List or search valid IANA timezone names by city, region or country. |
| lookup_timezone | Resolve a city or country name to its IANA timezone(s), e.g. 'Delhi' → Asia/Kolkata. |
| date_math | DST-aware add/subtract on dates, or the difference between two datetimes across zones. |
| find_meeting_slots | Overlapping working-hour meeting slots across participants in different timezones. |
| is_holiday | Check whether a date is a public holiday in a country (ISO 3166-1 alpha-2). |