Meet.bot

v1.0.0

Schedule and book meetings using the Meet.bot MCP server (mcp.meet.bot). Use when the user wants to check calendar availability, find open time slots, book a...

0· 247·1 current·1 all-time
byPoolside Ventures@poolside-ventures
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
Purpose & Capability
The name and description (scheduling via mcp.meet.bot) match the SKILL.md tooling and workflows. However, the SKILL.md explicitly requires a Meet.bot API key, while the registry metadata lists no required credentials — the declared purpose is coherent but the credential handling is not.
Instruction Scope
The SKILL.md stays on-purpose: it lists API endpoints/tools, when to call them, required parameters, and warns to confirm bookings. It instructs the agent to ask the user for an API key before proceeding (no other unrelated files, paths, or external endpoints are referenced).
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or downloaded — this is the lowest-risk install model.
!
Credentials
The runtime instructions require a Meet.bot API key (Bearer token), but requires.env / primary credential fields in the registry are empty. This mismatch means the platform won't advertise/verify the required secret, and the skill may prompt users to paste sensitive tokens ad-hoc (risking insecure handling or accidental transmission).
Persistence & Privilege
The skill does not request always:true, does not attempt to persist or modify other skills or agent-wide settings in the instructions, and is not requesting broad system privileges.
What to consider before installing
This skill appears to do what it says, but it fails to declare that it needs a Meet.bot API key. Before installing or using it: (1) ask the maintainer or publisher why no credential is declared in the metadata and request that the skill explicitly declare a primaryEnv for the Meet.bot token so the platform can handle it securely; (2) do not paste your production API key into free-text prompts — prefer platform-managed secret storage or a limited-scope/test token; (3) verify the domain (https://mcp.meet.bot) and the skill publisher identity (homepage/source missing); and (4) test with a disposable account or token first, and confirm the skill’s booking behavior (bookings cannot be cancelled via this server) to avoid accidental commitments.

Like a lobster shell, security has layers — review code before you run it.

latestvk9784v58pjc3he4cn5nm56c69582ayf4
247downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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

ToolPurpose
get_scheduling_pagesList all the user's scheduling pages
get_page_infoGet details about a specific page by URL
get_available_slotsFind open time slots for a page
book_meetingBook a slot (requires page, guest_email, guest_name, start)
health_checkVerify the API key is valid

Workflows

Check availability

  1. get_scheduling_pages to list pages (or use URL directly if known)
  2. get_available_slots with the page URL, date range, and user's timezone
  3. 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
  2. book_meeting — start time must be ISO 8601 (e.g. 2026-03-10T14:00:00Z)
  3. Confirm the booking details back to the user

Share a booking link

  1. get_available_slots with booking_link: true
  2. 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
  • get_available_slots supports count, start, end (YYYY-MM-DD), and timezone (IANA)

Comments

Loading comments...