INDIVIDUAL MCP TOOL
find_meeting_slots
Find working-hour time slots that overlap across participants in different timezones for a meeting of a given duration, excluding weekends and (when a country is given per participant) that person's public holidays.
LIVE ENDPOINT
https://api.agishub.com/mcp/timezone
Connect to this endpoint to inspect the live schema for find_meeting_slots and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.timezone-toolkit]
url = "https://api.agishub.com/mcp/timezone"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"timezone-toolkit": {
"type": "http",
"url": "https://api.agishub.com/mcp/timezone"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: timezone-toolkit
Remote MCP URL: https://api.agishub.com/mcp/timezone
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"timezone-toolkit": {
"url": "https://api.agishub.com/mcp/timezone"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"timezone-toolkit": {
"type": "http",
"url": "https://api.agishub.com/mcp/timezone"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "timezone-toolkit",
"transport": "streamable-http",
"url": "https://api.agishub.com/mcp/timezone"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
now_in— Get the current local time in an IANA timezone, including the UTC offset, zone abbreviation and whether DST is in effect.convert_timezone— Convert a specific date/time from one IANA timezone to another.convert_batch— Convert a single instant into many IANA timezones at once — a world-clock view.tz_offset— Get the exact UTC offset of an IANA timezone at a given instant, DST-aware.list_timezones— List or search valid IANA timezone identifiers, optionally filtered by a city, region or country substring (e.lookup_timezone— Resolve a city or country name to its IANA timezone(s) so you don't need the exact identifier — e.date_math— Timezone-aware date arithmetic: add or subtract a duration to a datetime (days are calendar-based and DST-safe; hours and minutes are absolute), or compute the difference between two datetimes that may be in different zones.is_holiday— Check whether a given date is a public holiday in a country (identified by its ISO 3166-1 alpha-2 code), and return the holiday name if so.