Meet.bot
Connect to the Meet.bot MCP server at https://mcp.meet.bot using a Bearer token.
Auth
Every tool call requires
Authorization: Bearer <api-key> in the HTTP header. If not configured, the server returns a clear error explaining this. Ask the user for their Meet.bot API key before proceeding.
Tools
| Tool | Purpose |
|---|
| INLINECODE2 | List all the user's scheduling pages |
| INLINECODE3 |
Get details about a specific page by URL |
|
get_available_slots | Find open time slots for a page |
|
book_meeting | Book a slot (requires page, guest
email, guestname, start) |
|
health_check | Verify the API key is valid |
Workflows
Check availability
- 1.
get_scheduling_pages to list pages (or use URL directly if known) - INLINECODE8 with the page URL, date range, and user's timezone
- Present slots in readable local time — not raw ISO strings
Book a meeting
- 1. Confirm page URL, guest name, guest email, and start time with the user
- INLINECODE9 — start time must be ISO 8601 (e.g.
2026-03-10T14:00:00Z) - Confirm the booking details back to the user
Share a booking link
- 1.
get_available_slots with INLINECODE12 - Return the first 3–5
booking_link URLs for the guest to self-select
Tips
- - Pages with "archived" in the URL are inactive — skip them
- Always confirm before calling
book_meeting — bookings cannot be cancelled via this server - INLINECODE15 supports
count, start, end (YYYY-MM-DD), and timezone (IANA)
Meet.bot
使用 Bearer 令牌连接到位于 https://mcp.meet.bot 的 Meet.bot MCP 服务器。
认证
每次工具调用都需要在 HTTP 头部中包含 Authorization: Bearer
。如果未配置,服务器将返回明确的错误说明。在继续操作前,请向用户询问其 Meet.bot API 密钥。
工具
| 工具 | 用途 |
|---|
| getschedulingpages | 列出用户的所有预约页面 |
| getpageinfo |
通过 URL 获取特定页面的详细信息 |
| getavailableslots | 查找页面的空闲时间段 |
| book_meeting | 预订时间段(需要页面、访客邮箱、访客姓名、开始时间) |
| health_check | 验证 API 密钥是否有效 |
工作流程
检查可用性
- 1. 使用 getschedulingpages 列出页面(如果已知可直接使用 URL)
- 使用 getavailableslots 传入页面 URL、日期范围和用户的时区
- 以可读的本地时间呈现时间段——不要使用原始的 ISO 字符串
预订会议
- 1. 与用户确认页面 URL、访客姓名、访客邮箱和开始时间
- 使用 book_meeting——开始时间必须为 ISO 8601 格式(例如 2026-03-10T14:00:00Z)
- 向用户确认预订详情
分享预订链接
- 1. 使用 bookinglink: true 参数调用 getavailableslots
- 返回前 3-5 个 bookinglink URL,供访客自行选择
提示
- - URL 中包含 archived 的页面为无效页面——请跳过
- 在调用 bookmeeting 之前务必确认——通过此服务器无法取消预订
- getavailable_slots 支持 count、start、end(YYYY-MM-DD 格式)和 timezone(IANA 时区)参数