# meetbot > meetbot is the open, EU-hosted, $0.30/hr meeting-bot API for Google Meet, Microsoft Teams, and Zoom. MIT-licensed SDKs, calendar-invite intake, $5 free credit on signup. meetbot is API infrastructure for meeting recording: you POST a meeting URL, a bot joins and records, a signed webhook fires when the meeting ends, and per-speaker audio + tab video + captions + chat land in your S3 bucket. Pricing is flat $0.30/hr billed per minute. New accounts get $5 of free credit. The SDKs are MIT-licensed; the source lives at https://github.com/meetbot-dev. The MCP server for AI coding assistants is at https://www.npmjs.com/package/@meetbot/mcp-server. ## Overview - [Getting Started](https://meetbot.dev/docs): Dispatch your first meeting bot, verify a webhook, and pull your first recording. End-to-end in about five minutes. ## AI Tools - [CLI (npm + Claude Skill)](https://meetbot.dev/docs/ai-tools/cli): Install @meetbot/cli to dispatch bots, fetch recordings, manage keys, and forward webhooks from the terminal. Also distributable as an Anthropic Claude Skill so Claude.ai can drive the same operations from natural language. - [llms.txt for AI Editors](https://meetbot.dev/docs/ai-tools/llms-txt): meetbot publishes /llms.txt and /llms-full.txt so AI coding tools can ground themselves on our docs in one fetch. Here's how to point Cursor, Claude Code, and ChatGPT at them. - [MCP Server (Cursor, Claude Code, Windsurf)](https://meetbot.dev/docs/ai-tools/mcp): Plug meetbot into your AI coding assistant. The @meetbot/mcp-server npm package exposes 17 tools — dispatch bots, fetch recordings, control live bots, verify webhooks — over the Model Context Protocol. ## API Reference - [API Reference](https://meetbot.dev/docs/api-reference): HTTP API for the meetbot orchestrator. OpenAPI 3.1 spec, Postman collection, endpoint table. - [OpenAPI spec](https://meetbot.dev/docs/api-reference/openapi): How to use the meetbot OpenAPI 3.1 spec — Postman, Insomnia, Redoc, code generation. ## Basics - [Billing](https://meetbot.dev/docs/basics/billing): Flat $0.30 per recorded hour. $5 free credit on signup. Stripe-managed. No tiers, no per-platform pricing, no storage fees. - [Regions](https://meetbot.dev/docs/basics/regions): Where meetbot runs today, where it will run, and how to think about data residency until we ship multi-region. - [Webhooks — Signature Verification](https://meetbot.dev/docs/basics/webhooks-verify): Every meetbot webhook is signed with HMAC-SHA256. Reject anything that doesn't verify. JavaScript, Python, and Go snippets included. ## Bot Features - [Bot Features (coming soon)](https://meetbot.dev/docs/bot-features): Recording, separate audio, separate video, output media, chat send. Shipping with M1 bot control API. ## Calendar - [Calendar (coming soon)](https://meetbot.dev/docs/calendar): OAuth-based recording rules — Google Calendar + Microsoft Outlook. Shipping in M2. ## Meeting Bots - [Bot Quickstart](https://meetbot.dev/docs/meeting-bots/quickstart): End-to-end walkthrough — dispatch a bot to a Google Meet URL, listen for the finalize webhook, fetch the manifest, and download per-speaker audio. - [Failure Sub-codes](https://meetbot.dev/docs/meeting-bots/sub-codes): The granular failure taxonomy returned on job.failed webhooks. Tells you whether to retry, escalate, or surface to your end-user. ## Per-platform Notes - [Discord](https://meetbot.dev/docs/per-platform/discord): How to dispatch a meetbot bot into a Discord voice channel — Discord application setup, OAuth invite, and per-platform quirks. - [Per-platform](https://meetbot.dev/docs/per-platform): Platform-specific quirks — Meet, Teams, Zoom (Web + Linux SDK), Webex, Discord, Jitsi, Whereby. - [Jitsi Meet](https://meetbot.dev/docs/per-platform/jitsi): Joining Jitsi Meet rooms — public meet.jit.si and self-hosted instances. Uses lib-jitsi-meet's JS API for clean roster + admit signals. - [Cisco Webex](https://meetbot.dev/docs/per-platform/webex): Joining Cisco Webex Meetings as a meetbot — supported URL patterns, lobby behavior, captions, known quirks. - [Whereby](https://meetbot.dev/docs/per-platform/whereby): Joining Whereby rooms as a meetbot — supported URL patterns, knock-to-enter behavior, integration notes. ## Sdks - [Go SDK (shipping Q3 2026)](https://meetbot.dev/docs/sdks/go): Official meetbot SDK for Go. Hand-written ergonomic facade over an oapi-codegen-generated transport. Importable as github.com/meetbot-dev/meetbot/sdk-go. - [Python SDK](https://meetbot.dev/docs/sdks/python): Official meetbot-sdk on PyPI. Sync + async clients, pydantic v2 models, webhook signature verification. Python 3.10+. - [Rust SDK (shipping Q4 2026)](https://meetbot.dev/docs/sdks/rust): Official meetbot crate. Async-first via tokio + reqwest, hand-written ergonomic facade over a progenitor-generated transport. - [TypeScript / JavaScript SDK](https://meetbot.dev/docs/sdks/typescript): Official @meetbot/sdk for Node.js 22+. Typed HTTP client, webhook signature verification, full surface for the meetbot orchestrator API. ## API - [Orchestrator base URL](https://api.meetbot.dev): bearer-token auth via `Authorization: Bearer mb_live_…`. Get a key at /account/keys. - [POST /api/v1/jobs](https://api.meetbot.dev/api/v1/jobs): dispatch a bot. JSON body with `meetingUrl` + `externalId`. - [GET /api/v1/jobs/:id](https://api.meetbot.dev/api/v1/jobs/:id): fetch one bot's status + manifest URL. - [DELETE /api/v1/jobs/:id](https://api.meetbot.dev/api/v1/jobs/:id): cancel a bot. - [Webhook signing](https://meetbot.dev/docs/basics/webhooks-verify): HMAC-SHA256 over the raw body, `x-meetbot-signature: sha256=`. ## SDKs and tools - [@meetbot/sdk (TypeScript)](https://www.npmjs.com/package/@meetbot/sdk): typed client. `createMeetbot({ apiKey }).dispatchBot({ … })`. - [@meetbot/mcp-server](https://www.npmjs.com/package/@meetbot/mcp-server): Model Context Protocol server for Cursor / Claude Code / Windsurf / Cline. 17 tools mapping the bot API surface. - [llms-full.txt](https://meetbot.dev/llms-full.txt): full Markdown dump of every docs page, for one-shot grounding. ## Optional - [Pricing](https://meetbot.dev/pricing): flat $0.30/hr, per-minute billing, $5 free credit. - [GitHub org](https://github.com/meetbot-dev): MIT-licensed SDKs + sample apps. - [Status](https://status.meetbot.dev): public uptime page.