loading…
Search for a command to run...
loading…
AI scheduling assistant for agents. Timezone conversion, public holidays for 100+ countries, business hours checker, multi-timezone meeting slot finder, and Goo
AI scheduling assistant for agents. Timezone conversion, public holidays for 100+ countries, business hours checker, multi-timezone meeting slot finder, and Google Calendar event creation. x402 native — pay $0.01 per call, no signup needed.
AI scheduling assistant for agents · x402 native · MCP compatible · Cloudflare Workers
Live at: https://meeting-mcp.com
Meeting Intelligence gives AI agents the scheduling tools they need to handle real-world booking workflows — timezone conversion, public holiday checking, business hours validation, multi-timezone slot finding, and Google Calendar event creation.
Instead of an agent guessing or hallucinating timezone offsets and holiday dates, it calls structured tools and gets reliable structured data back.
convert_timeConvert any time between timezones. Use when scheduling across countries.
{
"time": "2026-06-01T14:00:00",
"from": "America/New_York",
"to": "Europe/London"
}
Returns: Local times in both zones, UTC reference, offset difference.
get_holidaysGet all public holidays for any country and year. Use before confirming a meeting date.
{
"country": "GB",
"year": 2026
}
Returns: Complete list of public holidays with dates and names. Covers 100+ countries.
check_business_hoursCheck if it is currently business hours in any timezone. Use before scheduling outreach or calls.
{
"timezone": "Asia/Tokyo",
"work_start": "09:00",
"work_end": "18:00"
}
Returns: Current local time, day of week, open/closed status.
find_meeting_slotsFind optimal meeting windows that work across multiple participant timezones. Returns up to 10 available slots.
{
"participants": "Europe/London,America/New_York,Asia/Singapore",
"duration_minutes": 60,
"days": 5
}
Returns: Up to 10 time slots with local time shown for every participant.
create_calendar_linkGenerate Google Calendar and Outlook add-to-calendar links. Use at the end of every scheduling workflow.
{
"title": "Product Review",
"start": "2026-06-01T14:00:00Z",
"end": "2026-06-01T15:00:00Z",
"description": "Quarterly product review with the team",
"location": "https://zoom.us/j/123456"
}
Returns: Ready-to-share Google Calendar link, Outlook link, and ICS file content.
create_eventCreate a real event directly in Google Calendar. Requires the user's access token.
{
"access_token": "ya29.your_token_here",
"title": "Strategy Session",
"start": "2026-06-01T14:00:00Z",
"end": "2026-06-01T15:00:00Z",
"attendees": ["[email protected]", "[email protected]"],
"description": "Q3 planning session",
"timezone": "Europe/London"
}
Returns: Event ID, confirmation link, attendees. Token available from Google OAuth Playground — select https://www.googleapis.com/auth/calendar scope.
This server uses the x402 micropayment protocol. $0.01 USDC per call on Base network. No account. No subscription. Agents pay automatically.
How it works:
402 Payment Required with wallet addressX-Payment: <tx_hash> header → gets data# Example with curl
curl -X POST https://YOUR-URL.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "X-Payment: 0x_your_tx_hash_here" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_holidays","arguments":{"country":"GB","year":2026}}}'
Add to your claude_desktop_config.json:
{
"mcpServers": {
"meeting-intelligence": {
"command": "npx",
"args": ["-y", "@smithery/cli", "run", "YOUR-SMITHERY-URL"]
}
}
}
Install directly: smithery.ai/server/stockvibes07/meeting-mcp
MCP endpoint: https://YOUR-URL.workers.dev/mcp
Discovery: https://YOUR-URL.workers.dev/.well-known/mcp.json
Agent task: "Schedule a 1-hour call with someone in New York and someone in Tokyo next week. Make sure it avoids UK bank holidays."
The agent calls:
get_holidays → checks for UK holidays next weekfind_meeting_slots → finds windows across London/New York/Tokyoconvert_time → confirms the best slot in all three timezonescheck_business_hours → verifies all three locations are in working hourscreate_calendar_link → generates links for all participantscreate_event → books it in Google CalendarSix tool calls. One complete workflow. $0.06 total cost.
| Endpoint | Method | Auth | Description |
|---|---|---|---|
/health |
GET | Free | Status check |
/.well-known/mcp.json |
GET | Free | MCP discovery |
/mcp |
POST | Free (protocol) / x402 (tools) | MCP JSON-RPC |
/convert-time |
GET | x402 | Timezone conversion |
/holidays |
GET | x402 | Public holidays |
/business-hours |
GET | x402 | Business hours check |
/find-slots |
GET | x402 | Meeting slot finder |
/calendar-link |
GET | x402 | Calendar link generator |
/create-event |
POST | x402 | Google Calendar event |
Intl API — built-in, always accurateClaude · ChatGPT · Cursor · VS Code · Windsurf · Cline · Claude Code · Any MCP client
worker.js line 13npm install
npx wrangler deploy
No other configuration needed. All data sources are free with no API keys required.
Built on Cloudflare Workers · x402 Protocol · MCP 2024-11-05 spec
Run in your terminal:
claude mcp add meeting-mcp -- npx