chronosync-mcp
Chronosync MCP is a free, keyless, IANA/DST-accurate Model Context Protocol server that provides AI agents with comprehensive time-related functionalities.
Get current time (
now_in): Retrieve the current local time in any IANA timezone, including UTC offset, abbreviation, and DST status.Convert timezones (
convert_timezone): Convert a specific date/time between timezones — accepts ISO 8601 or natural language (e.g., "next Tuesday 3pm").Batch/world-clock conversion (
convert_batch): Convert a single moment into multiple target timezones simultaneously.Get UTC offset (
tz_offset): Look up the exact DST-aware UTC offset for any timezone at a specific instant, including fractional offsets (e.g., +05:30, +05:45).List/search timezones (
list_timezones): Browse or search all valid IANA timezone names by substring.Resolve city/country to timezone (
lookup_timezone): Find the correct IANA timezone for a city, country, or ISO code without needing the exact identifier (e.g., "Delhi" → Asia/Kolkata).DST-aware date math (
date_math): Add/subtract time respecting DST boundaries, or compute the difference between two datetimes across different timezones.Find meeting slots (
find_meeting_slots): Discover overlapping working-hour slots for participants across multiple timezones, automatically skipping weekends and public holidays.Check public holidays (
is_holiday): Verify whether a specific date is a public holiday in a given country using ISO 3166-1 alpha-2 country codes.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@chronosync-mcpWhat time is it in Tokyo?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
timezone-toolkit
Timezone converter, world clock, date math & meeting scheduler MCP server for AI agents — free, no API key, IANA/DST-accurate.
A remote Model Context Protocol server that gives AI agents everything they can't compute on their own about time: the current time anywhere, timezone conversion (ISO or natural language), DST-aware date arithmetic, and cross-timezone meeting scheduling. Runs with low global latency, or locally as an npm binary.
Keywords:
timezone·mcp·world clock·date math·meeting scheduler·DST·IANA·timezone converter
MCP Registry: com.agishub/timezone-toolkit
Why timezone-toolkit
🆓 Free & keyless — no account, no API key, no per-call billing.
🌍 IANA / DST accurate — correct across daylight-saving boundaries and fractional offsets (India
+05:30, Nepal+05:45, Chatham+12:45).🗣️ Natural language —
"next Tuesday 3pm"works as well as ISO 8601.🧭 No identifiers required —
lookup_timezone("Delhi")→Asia/Kolkata.🤝 Meeting scheduler — overlapping working-hour slots across zones, skipping weekends and public holidays.
⚡ Global edge — deployed globaly
Related MCP server: MCP Node Time
Tools
Tool | Parameters | Description |
|
| Current local time in an IANA zone with |
|
| Convert a time between zones. |
|
| Convert one instant into many target zones at once (world-clock view). |
|
| Exact UTC offset at an instant (DST-aware). Defaults to now. |
|
| List/search valid IANA zone names by substring. |
|
| Resolve a city/country/ISO code to its IANA zone(s). |
|
| Add/subtract time (DST-aware) or diff two datetimes across zones. |
|
| Best overlapping working-hour slots; skips weekends & holidays. |
|
| Whether a date is a public holiday (ISO 3166-1 alpha-2). |
All responses are JSON. Where applicable they include datetime (ISO 8601),
utcOffset, abbreviation and isDST. Errors return { "error": "..." }
with a clear message and, for bad timezones, the closest suggestions.
Response examples
now_in({ "timezone": "Asia/Kolkata" }):
{
"timezone": "Asia/Kolkata",
"datetime": "2026-07-10T01:37:48+05:30",
"date": "2026-07-10",
"time": "01:37:48",
"weekday": "Friday",
"utcOffset": "+05:30",
"abbreviation": "GMT+5:30",
"isDST": false,
"unix": 1783626468
}convert_timezone({ "datetime": "next Tuesday 3pm", "from": "Europe/Madrid", "to": "America/New_York" }):
{
"input": "next Tuesday 3pm",
"interpreted_as": "next Tuesday 3pm",
"natural_language": true,
"from": { "timezone": "Europe/Madrid", "datetime": "2026-07-14T15:00:00+02:00", "utcOffset": "+02:00", "abbreviation": "GMT+2", "isDST": true },
"to": { "timezone": "America/New_York", "datetime": "2026-07-14T09:00:00-04:00", "utcOffset": "-04:00", "abbreviation": "EDT", "isDST": true }
}find_meeting_slots(...) (abbreviated):
{
"duration_minutes": 60,
"slots": [
{
"start_utc": "2026-07-13T13:00:00.000Z",
"end_utc": "2026-07-13T14:00:00.000Z",
"participants": [
{ "timezone": "Europe/Madrid", "local_start": "2026-07-13 15:00", "weekday": "Monday" },
{ "timezone": "America/New_York", "local_start": "2026-07-13 09:00", "weekday": "Monday" }
]
}
],
"count": 1
}Prompt examples
"What time is it in Tokyo right now?"
"Convert next Tuesday 3pm New York time to Madrid and London."
"What's the UTC offset in Kathmandu today?"
"Which timezone is Buenos Aires in?"
"Add 3 business-affecting days: what is 2026-10-24 12:00 Madrid plus 1 day (across DST)?"
"Find a 60-minute meeting slot next week for people in Madrid, New York and Tokyo."
"Is 2026-12-25 a holiday in Spain?"
Install
Remote server (recommended — nothing to install)
Point your MCP client at the hosted endpoint:
https://timezone-toolkit.agishub.com/mcpClaude Desktop / Cursor / Windsurf (claude_desktop_config.json,
~/.cursor/mcp.json, or Windsurf mcp_config.json):
{
"mcpServers": {
"timezone-toolkit": {
"command": "npx",
"args": ["mcp-remote", "https://timezone-toolkit.agishub.com/mcp"]
}
}
}Clients with native remote support can add the URL directly (Streamable HTTP).
A legacy SSE endpoint is available at /sse.
Local server (npm / stdio)
npx @agishub/timezone-toolkit{
"mcpServers": {
"timezone-toolkit": {
"command": "npx",
"args": ["-y", "@agishub/timezone-toolkit"]
}
}
}Development
npm install --legacy-peer-deps
npm test # unit tests (DST + fractional offsets + scheduler)
npm run dev # local Worker at http://localhost:8787/mcp
npm run deploy # deploy to Cloudflare
npm run build # bundle the stdio binary to dist/Built on Intl.DateTimeFormat + countries-and-timezones
(IANA data) and chrono-node
(natural language). Public holidays via the free
Nager.Date API. No native binaries.
License
MIT © AgisHub
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agishub/timezone-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server