annator / mcps /grok_com_github /tools /dismiss_notification.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
538 Bytes
{
"name": "dismiss_notification",
"description": "Dismiss a notification by marking it as read or done",
"inputSchema": {
"type": "object",
"properties": {
"state": {
"type": "string",
"description": "The new state of the notification (read/done)",
"enum": [
"read",
"done"
]
},
"threadID": {
"type": "string",
"description": "The ID of the notification thread"
}
},
"required": [
"threadID",
"state"
]
}
}