Meeting Scheduler
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., "@Meeting Schedulerfind a 30-minute slot tomorrow between 9am and 5pm"
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.
Stop building scheduling logic from scratch.
Quick Start
Add to your mcpServers config:
{
"mcpServers": {
"meeting-scheduler": {
"url": "https://your-cloud-run-url/mcp"
}
}
}Related MCP server: Chrono MCP
Before / After
Before: Write custom date arithmetic, timezone offset tables, and conflict detection by hand for every scheduling feature.
After:
Input:
{
"date": "2024-03-15",
"duration_minutes": 60,
"busy_blocks": [
{ "start": "2024-03-15T09:00Z", "end": "2024-03-15T10:30Z" },
{ "start": "2024-03-15T13:00Z", "end": "2024-03-15T14:00Z" }
],
"work_start": "09:00",
"work_end": "18:00"
}Output:
{
"found": true,
"slot_start": "2024-03-15T10:30",
"slot_end": "2024-03-15T11:30"
}Tools
Tool | What it does |
| Create a validated meeting record with a unique ID and computed ISO timestamps |
| Detect whether a proposed time slot conflicts with existing busy blocks |
| Find the first open slot on a day that fits within working hours |
| Generate a plain-text or HTML invitation ready to send by email or chat |
| Convert a meeting time between any two IANA timezones, returning both and UTC |
| Get exact duration in minutes, decimal hours, and a readable label |
| Generate dates for a recurring series: daily, weekly, biweekly, or monthly |
Who is this for?
App developers who need scheduling logic in their product without building a calendar engine from scratch
AI assistants that schedule meetings on behalf of users and need structured, validated time outputs
Automation builders connecting calendar APIs who need clean, reliable date and time math utilities
Health Check
GET /healthResponse:
{ "status": "ok", "server": "meeting-scheduler", "version": "1.0.0", "tools": 7 }Built by
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI assistants to intelligently schedule meetings by checking Microsoft Outlook calendars, finding available time slots across multiple participants, and automatically booking meetings with Teams integration. Uses Microsoft Graph API with smart fallback logic for optimal scheduling.Last updated1
- AlicenseAqualityBmaintenanceProvides comprehensive date, time, timezone, and calendar operations powered by Luxon, enabling AI agents to perform time calculations, timezone conversions, and temporal data handling across 400+ IANA timezones.Last updated29MIT
- Flicense-qualityDmaintenanceEnables AI assistants to manage calendars and tasks through natural language, supporting Google Calendar operations like event creation, availability checking, and smart scheduling. It features schedule analysis, task reminders, and meeting time recommendations to streamline productivity.Last updated
- Flicense-quality-maintenanceEnables AI assistants to manage Microsoft 365 and Outlook calendars through the Microsoft Graph API. It supports comprehensive event operations including listing, creating, and updating meetings, as well as finding available slots across multiple attendees.Last updated
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Schedule tasks for later from your AI agent: reminders, delayed webhooks, recurring jobs.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/josephtandle/calendly-mcp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server