delete_event
Remove a specific calendar event using its unique ID. The tool integrates with Outlook Calendar MCP to locally manage and delete events directly from Windows systems, ensuring data privacy.
Instructions
Delete a calendar event by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar | No | Calendar name (optional) | |
eventId | Yes | Event ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"calendar": {
"description": "Calendar name (optional)",
"type": "string"
},
"eventId": {
"description": "Event ID to delete",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}