send_message
Send messages directly to Google Chat spaces using the tool within the Google Workspace MCP Server. Specify user details, space ID, and message text for effective communication.
Instructions
Sends a message to a Google Chat space.
Returns:
str: Confirmation message with sent message details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message_text | Yes | ||
service | Yes | ||
space_id | Yes | ||
thread_key | No | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message_text": {
"title": "Message Text",
"type": "string"
},
"service": {
"title": "service",
"type": "string"
},
"space_id": {
"title": "Space Id",
"type": "string"
},
"thread_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Thread Key"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"space_id",
"message_text"
],
"title": "send_messageArguments",
"type": "object"
}