create_meeting_bot
Automate meeting attendance by deploying a bot to join, record, and transcribe sessions on Zoom, Google Meet, or Microsoft Teams via the Attendee MCP Server.
Instructions
Create a bot to join a meeting and record/transcribe it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_name | No | Name for the bot (optional, defaults to 'Go Bot') | Go Bot |
meeting_url | Yes | URL of the meeting (Zoom, Google Meet, or Teams) |
Input Schema (JSON Schema)
{
"properties": {
"bot_name": {
"default": "Go Bot",
"description": "Name for the bot (optional, defaults to 'Go Bot')",
"type": "string"
},
"meeting_url": {
"description": "URL of the meeting (Zoom, Google Meet, or Teams)",
"type": "string"
}
},
"required": [
"meeting_url"
],
"type": "object"
}