send_image_to_meeting
Display an image in Google Meet by sending its HTTPS URL through a specified bot. Facilitates visual communication during meetings using the Attendee MCP Server.
Instructions
Send an image to the meeting through the bot (Google Meet only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot that should display the image | |
image_url | Yes | HTTPS URL of the image to display |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot that should display the image",
"type": "string"
},
"image_url": {
"description": "HTTPS URL of the image to display",
"type": "string"
}
},
"required": [
"bot_id",
"image_url"
],
"type": "object"
}