decline-event
Decline calendar events in Microsoft Outlook by specifying the event ID and an optional comment using the Outlook MCP Server interface.
Instructions
Declines a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Optional comment for declining the event | |
eventId | Yes | The ID of the event to decline |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Optional comment for declining the event",
"type": "string"
},
"eventId": {
"description": "The ID of the event to decline",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}