모든 비교 · vs Vexa
Vexa is the only competitor in this set with a fully Apache-2.0 stack — orchestrator, transcription, MCP server, the whole pipeline. If "true OSS today" is your hard requirement, they win, and we tell you so. Where we differ: pricing shape. Their hosted PAYG is $0.30/hr bot + $0.20/hr transcription = $0.50/hr bundled. Ours is $0.30/hr entry rate for the bot-hour with transcription as BYOK today (free pass-through; you pay your provider) — hosted Whisper option ships Q3 2026. We also bring more battle-hardened Meet/Teams adapters today; their hosted dashboard is younger than ours, ours is younger than theirs in places too — call it a mixed bag.
01 · 요약
Vexa을(를) 사용해야 할 때…
meetbot을 사용해야 할 때…
02 · 사양 표
페이지 푸터의 날짜에 인용된 출처에 대해 확인된 숫자. 무언가 변경되면 PR로 수정해 주세요.
| meetbot | Vexa | ||
|---|---|---|---|
| OSS license (full stack) | MIT (SDKs/CLI/samples/spec); bot closed | Apache 2.0 (everything)[1] | |
| self-host | M5 (source-available) | today (Docker · K8s · OpenShift · bare metal)[2] | |
| hosted bot price | $0.30 / hr (bot-hour only) | $0.30 / hr[3] | |
| hosted transcription | BYOK today (free pass-through); hosted Whisper +$0.10/hr at GA (Q3 2026) | +$0.20 / hr[4] | |
| bundled hosted $/hr | $0.30 + your transcription bill (BYOK) today; $0.40 at GA | $0.50 | |
| individual plan | — | $12 / mo (1 concurrent bot)[5] | |
| MCP server | — | yes (built-in)[6] | |
| interactive bot (TTS speak) | M1 (output-audio endpoint) | yes (TTS-driven) | |
| platforms | Meet, Teams, Zoom Web, Zoom SDK, Webex, Whereby, Jitsi, Discord | Meet, Teams, Zoom | |
| transports | webhook · websocket · RTMP | webhook · websocket | |
| data residency (hosted) | Hetzner Falkenstein (DE) | self-host: anywhere; hosted: not specified | |
| production maturity | pre-launch (zero paying customers today; sample apps + daily smoke tests against real meetings) | growing fast, smaller install base than Recall |
03 · 가격 시나리오
세 가지 사용 지점: 취미가, 스타트업, 규모 있는 회사. 셀별 공식 가시화 — 스프레드시트에 복사하고 자신의 숫자를 넣으세요.
월 10시간의 회의 녹화.
Today: meetbot bills the bot-hour only — transcription (if you want it) is BYOK. Or self-host Vexa free on your own box — fixed cost ~$0 + your time. If your time is free, Vexa wins. It rarely is.
월 1,000시간의 회의 녹화.
Today bundled: $300 + ~$100–200 for BYOK transcription via Deepgram/AssemblyAI ≈ $400–500/mo. At GA (hosted Whisper Q3 2026): $400/mo. Self-host Vexa = ~$80/mo Hetzner box + ~10 hr/mo ops time ≈ $280/mo at $20/hr engineer rate.
월 50,000시간의 회의 녹화.
At this scale BYOK transcription approaches its hardware floor (~$200–400/mo for self-hosted Whisper on a couple of Hetzner GPU boxes). Self-host Vexa at this scale = real ops investment (~1 FTE), plus GPU bills for transcription. Probably cheaper in hardware ($/hr) but expensive in headcount.
04 · 그들이 이기는 곳
이 섹션을 포함하는 이유는 그 대안 — 어디서나 우리가 이긴다고 척하는 것 — 이 부정직하고, 부정직한 비교 페이지가 대부분 읽을 가치가 없는 이유이기 때문입니다.
05 · 우리가 이기는 곳
각 줄은 그것을 증명하는 docs 페이지로 링크됩니다. 형용사가 아닌 숫자. 아래 날짜 기준 Vexa의 공개 표면에 대해 출처화되었습니다.
06 · 마이그레이션
같은 형태, 같은 필드, 다른 호스트. Vexa 의 bot 디스패치 호출을 meetbot 호출로 교체하세요. webhook 페이로드는 핸들러가 이미 파싱하는 같은 JSON 형태로 도착합니다.
// Vexa (hosted)
const res = await fetch("https://gateway.vexa.ai/bots", {
method: "POST",
headers: {
"X-API-Key": process.env.VEXA_KEY!,
"Content-Type": "application/json",
},
body: JSON.stringify({
platform: "google_meet",
native_meeting_id: "abc-defg-hij",
bot_name: "notes",
language: "en",
}),
});// meetbot — transcription is BYOK today (hosted Whisper Q3 2026)
const res = await fetch("https://api.meetbot.dev/api/v1/bot", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.MEETBOT_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
// per-speaker audio in your bucket; pipe to your provider
webhook_url: WEBHOOK_URL,
}),
});07 · FAQ
마지막 확인 2026-05-09 대상 Vexa의 공개 정보. 오류를 발견하셨나요? GitHub에서 수정.