update_user
Send updates to Slack or Discord for a captured message by specifying its ID and the new content to share. Ensures coordinated communication between AI agents via the Beep Boop MCP server.
Instructions
Sends a follow-up update back to the platform (Slack/Discord) for a captured message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageId | Yes | ID of the captured message to respond to | |
updateContent | Yes | Message content to send as an update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"messageId": {
"description": "ID of the captured message to respond to",
"type": "string"
},
"updateContent": {
"description": "Message content to send as an update",
"type": "string"
}
},
"required": [
"messageId",
"updateContent"
],
"type": "object"
}