Meeting Scheduler
Automates meeting logistics with tools for scheduling, availability checking, slot finding, timezone conversion, and recurring date generation. Eliminates the need for custom calendar logic by providing validated time operations and formatted invitations for applications and AI assistants.
README
Stop building scheduling logic from scratch.
Quick Start
Add to your mcpServers config:
{
"mcpServers": {
"meeting-scheduler": {
"url": "https://your-cloud-run-url/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 |
|---|---|
schedule_meeting |
Create a validated meeting record with a unique ID and computed ISO timestamps |
check_availability |
Detect whether a proposed time slot conflicts with existing busy blocks |
find_available_slot |
Find the first open slot on a day that fits within working hours |
format_meeting_invite |
Generate a plain-text or HTML invitation ready to send by email or chat |
convert_meeting_time |
Convert a meeting time between any two IANA timezones, returning both and UTC |
calculate_meeting_duration |
Get exact duration in minutes, decimal hours, and a readable label |
generate_recurring_dates |
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 /health
Response:
{ "status": "ok", "server": "meeting-scheduler", "version": "1.0.0", "tools": 7 }
Built by
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.