MeetStream is a meeting bot API that lets developers programmatically join, record, transcribe, and stream Zoom, Google Meet, and Microsoft Teams meetings. This Claude plugin gives Claude full knowledge of the MeetStream API so it can generate complete, production-ready integrations — note-takers, AI coaching tools, CRM auto-updaters, calendar bots, and more.
✨ What you can build
| Use Case |
|---|
| 🎙️ | AI meeting notetaker — bot joins, records, emails summary to attendees |
| 📝 | Real-time transcription with per-speaker attribution |
| 🔊 | Live audio/video streaming over WebSocket to your own models |
| 🤖 | Interactive meeting bots that send messages or play audio |
| 📅 | Calendar-automated bots that join every meeting on a schedule |
| 🧠 | Sales coaching tools — live objection detection, talk-time tracking |
| 📊 | CRM auto-update pipelines — extract action items, sync to HubSpot/Salesforce |
| 🗓️ | Post-call follow-up agents — transcript → summary → email in one pipeline |
🚀 Quick Start
1. Get your API key → app.meetstream.ai/api-keys
2. Install the plugin (see your tool below)
3. Tell Claude what you're building:
"Build a Python webhook server that records my Zoom calls and emails me a transcript when it's done."
"Create a real-time transcription pipeline that streams speaker-attributed text to my WebSocket server."
"Write a Next.js API route that joins a meeting, waits for it to end, and generates an AI summary with action items."
"Set up calendar automation so a MeetStream bot joins every Google Meet on my calendar."
"Build a sales coaching bot that detects competitor mentions and objections in real time."
📦 Installation
Claude Code (CLI)
/plugin marketplace add meetstream-ai/claude-plugin
/plugin install meetstream@meetstream-ai
/reload-plugins
Cursor
- Open Settings → Claude → Plugins
- Click Add Marketplace → enter
meetstream-ai/claude-plugin
- Find MeetStream in the plugin list → click Install
Cmd+Shift+P → Reload Window
VS Code (Claude extension)
- Open the Claude panel → click ⚙ Settings → Plugins
- Click Add from GitHub → enter
meetstream-ai/claude-plugin
- Click Install → reload VS Code
Windsurf
- Open Settings (
Cmd+,) → AI → Plugins
- Click Add Plugin Repository → enter
meetstream-ai/claude-plugin
- Install meetstream → restart Windsurf
Manual / Config-based
git clone https://github.com/meetstream-ai/claude-plugin.git ~/.claude-plugins/meetstream
🌐 Supported Platforms
| Platform | Setup |
|---|
| ✅ Google Meet | Works immediately — no setup |
| ✅ Microsoft Teams | Works immediately — no setup |
| ⚙️ Zoom | Requires a Zoom Marketplace app → setup guide |
🏗️ How It Works
Your code → POST /bots/create_bot → Bot joins meeting
↓
Meeting ends
↓
Webhook fires: transcription.processed
↓
GET /bots/{id}/get_bot_transcript
↓
Claude generates summary / action items
↓
Deliver to email / Slack / Notion / CRM
MeetStream handles the hard parts: platform compatibility, bot admission, audio capture, speaker diarization, and post-processing. You write business logic.
💡 Example Integrations
Note-taker with email delivery (Node.js)
// Bot joins → meeting ends → Claude summarizes → email sent
await createBot({ meetingLink, callbackUrl: '/webhook' })
// On transcription.processed webhook:
const transcript = await getTranscript(botId)
const summary = await claude.summarize(transcript)
await sendEmail(attendees, summary)