cancel-event
Cancel a calendar event in Outlook by providing the event ID and an optional comment. Integrates with Outlook MCP Server for efficient event management.
Instructions
Cancels a calendar event
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment | No | Optional comment for cancelling the event | |
| eventId | Yes | The ID of the event to cancel |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Optional comment for cancelling the event",
"type": "string"
},
"eventId": {
"description": "The ID of the event to cancel",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}