Docs for Agents & LLMs
Docs for Agents & LLMs
Everything here is machine-readable — point your agent at it
These docs are built to be read by agents as much as by humans. If you’re integrating MeetStream with Claude, Cursor, or any LLM-driven workflow, start here.
The machine-readable surface
Two MCP servers (use both)
- Docs-search MCP —
https://docs.meetstream.ai/_mcp/server— searches these docs. Read-only, no key needed. - Action MCP —
https://mcp.meetstream.ai/mcp(hosted, auth via your key) ornpx @meetstream/mcp(local) — actually does things: creates bots, pulls transcripts and status, sends messages into live meetings. This is the one that lets an agent debug a real bot session.
Claude Code users can install both in one step with the plugin:
Agent-friendly CLI
Every @meetstream/cli command supports --json, so agents can drive the full API from a shell without parsing prose:
Ground rules worth telling your agent
- Auth is
Authorization: Token <key>—Token, notBearer. The word matters. create_botrequiresmeeting_linkANDbot_name.- Webhook envelopes carry both
eventandbot_event; branch onbot_event/bot_statusfor terminal reasons — details in Debugging Bots. - An
Idempotency-Keyreplay returns 507 with the original bot — treat as success, never retry-loop on it. - Media links are presigned and expire — re-fetch the endpoint, don’t cache URLs.
