annator / mcps /grok_com_vercel /tools /edit_toolbar_message.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
1.09 kB
{
"name": "edit_toolbar_message",
"description": "Edit an existing message in a toolbar thread.",
"inputSchema": {
"type": "object",
"properties": {
"threadId": {
"type": "string",
"description": "The thread ID containing the message"
},
"messageId": {
"type": "string",
"description": "The message ID to edit"
},
"teamId": {
"type": "string",
"description": "The team ID to get the deployment events for. Alternatively the team slug can be used.\nTeam IDs start with \"team_\".\nIf you do not know the team ID or slug, it can be found through these mechanism:\n- Read the file .vercel/project.json if it exists and extract the orgId\n- Use the `list_teams` tool"
},
"markdown": {
"type": "string",
"description": "The updated message content in markdown format"
}
},
"required": [
"threadId",
"messageId",
"teamId",
"markdown"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}