# Timezone Meeting Planner MCP for AI Agents MCP

> Timezone Meeting Planner finds the best overlap for global calls. It checks business hours across different cities, handles daylight saving time jumps, and ranks the best windows to avoid waking people up at 3 AM.

## Overview
- **Category:** productivity
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/undefined/mcp
- **Tags:** timezone, meeting, scheduling, dst, international, productivity

## Description

When you have a global team, the logistics of a simple weekly sync can become a full-time job. You spend your morning checking local times, verifying if a country is currently observing daylight saving, and then sending out several emails just to find a slot that doesn't land in the middle of the night for someone. This MCP handles all of that logic in one go. It looks at the 24-hour clock for every city involved and figures out where the business hours actually line up. It specifically looks for those annoying daylight saving time shifts that mess up recurring invites. Instead of you doing the math, it gives you a ranked list of the best times to meet. It is part of the Vinkius catalog, making it easy to plug into your existing workflow so your agent can handle the logistics while you focus on the agenda. You can stop toggling between world clocks and start getting answers on which hour actually works for everyone. It handles the heavy lifting of timezone math so you can stop worrying about waking someone up at 3 AM or catching a teammate at the end of their day.

## Tools

### dst_transitions
Identify upcoming Daylight Saving Time changes for specific timezones to avoid scheduling errors. This ensures recurring invites don't shift by an hour.

### optimal_slots
Get a ranked list of the best meeting times across multiple timezones based on local business hours. It prioritizes convenience for everyone involved.

### schedule_matrix
Create a 24-hour grid showing availability across all cities involved in a meeting. Use this to visualize the full day for every participant.

### timezone_search
Look up IANA timezones using common city or region names. This provides the correct data for any global location.

## Prompt Examples

**Prompt:** 
```
Find a 1-hour meeting window for a team in Paris, New York, and Sydney on June 15th.
```

**Response:** 
```
Here are the best windows for June 15th, ranked by the least inconvenience for all three cities:

| Window (UTC) | Paris | New York | Sydney |
| :--- | :--- | :--- | :--- |
| 12:00 - 13:00 | 14:00 | 08:00 | 21:00 |
| 13:00 - 14:00 | 15:00 | 09:00 | 22:00 |

**Best Option:** 12:00 - 13:00 UTC. This hits the start of the day for New York and the end of the day for Sydney.
```

**Prompt:** 
```
Are there any time changes coming up for London in the next 6 months?
```

**Response:** 
```
Yes, there is one upcoming Daylight Saving Time transition for London:

*   **Date:** March 31, 2024
*   **Effect:** Clocks will move forward by 1 hour.

Make sure to update your recurring invites for this date to avoid shifting your meeting times.
```

**Prompt:** 
```
Show me a 24-hour grid for a meeting between Tokyo and Los Angeles.
```

**Response:** 
```
Here is the 24-hour availability matrix for Tokyo and Los Angeles:

| Time (UTC) | Tokyo | Los Angeles |
| :--- | :--- | :--- |
| 00:00 | 09:00 | 16:00 (Prev Day) |
| 04:00 | 13:00 | 20:00 (Prev Day) |
| 08:00 | 17:00 | 00:00 |
| 12:00 | 21:00 | 04:00 |
| 16:00 | 02:00 (Next Day) | 08:00 |

There is very little overlap during standard business hours for these two locations.
```

## Capabilities

### Find local timezones by city
Look up the correct IANA timezone for any city or region name.

### Identify daylight saving shifts
Check upcoming DST transitions to prevent scheduling errors.

### Generate availability grids
Create a 24-hour meeting matrix for multiple cities at once.

### Rank meeting windows
Get a prioritized list of the best times based on local business hours.

### Detect time overlaps
See exactly where different timezones line up on a 24-hour clock.

## Use Cases

### Syncing a distributed dev team
A manager needs to sync with a team in Tokyo and Berlin. The agent uses optimal_slots to find a 1-hour window on Friday that isn't too late for Tokyo or too early for Berlin.

### Planning quarterly reviews
A coordinator uses dst_transitions to see if a recurring meeting will shift by an hour in three months, preventing a scheduling disaster.

### Onboarding new remote hires
An HR lead uses schedule_matrix to see a side-by-side view of the new hire's local hours versus the home office to set up a training schedule.

### Quick city timezone lookups
A traveler needs to know the correct IANA string for a small town. The agent uses timezone_search to get the exact region name.

## Benefits

- Stop guessing about UTC offsets because timezone_search handles the lookup for you.
- Avoid ghost meetings where someone is woken up at 2 AM by tracking daylight saving shifts.
- Get a clear visual of everyone's day using the schedule_matrix to see overlaps.
- Choose the best times immediately with optimal_slots ranking windows by convenience.
- Save hours of back-and-forth emails by letting your agent handle the logistics.
- Prevent scheduling disasters by checking dst_transitions before setting recurring invites.

## How It Works

The bottom line is you get a prioritized list of meeting times that respect everyone's local business hours.

1. Input the city names and the date you want to schedule.
2. The MCP analyzes the 24-hour schedules and DST data for those locations.
3. You get a ranked list of the best meeting windows with inconvenience scores.

## Frequently Asked Questions

**How does the Timezone Meeting Planner help with global teams?**
It finds the best meeting windows for people in different countries. It automatically looks at business hours in each city so you don't have to do the math yourself.

**Can the Timezone Meeting Planner handle daylight saving time?**
Yes, it identifies upcoming Daylight Saving Time transitions for specific timezones. This prevents your recurring meetings from shifting by an hour when the clocks change.

**Can I use the Timezone Meeting Planner to find a specific city's timezone?**
Yes, you can ask your agent to look up the IANA timezone for any city or region. It will provide the correct identifier for your scheduling tools.

**How does the Timezone Meeting Planner decide which meeting times are best?**
It uses an inconvenience score. It ranks time slots based on how well they align with the local business hours of all participants involved.

**What is a schedule matrix in the Timezone Meeting Planner?**
It is a 24-hour grid that shows the time in multiple cities side-by-side. This helps you see exactly how the hours line up for everyone at a glance.

**Is the Timezone Meeting Planner good for large groups?**
It is perfect for large groups because it can analyze multiple cities at once. It helps you find a common window that works for the maximum number of people.

**How are meeting slots ranked?**
The `rank_optimal_slots` tool calculates an inconvenience score based on how far the slot is from the 09:00-17:00 business window.

**Can I identify DST changes?**
Yes, use the `dst_transitions` tool to flag dates where clock offsets change for your selected cities.

**How do I find a specific timezone?**
You can use the `timezone_search` tool to search for city or region names and get valid IANA identifiers.