delete-event
Remove a calendar event from Microsoft Outlook by specifying its event ID using the MCP server tool for scheduling and managing meetings.
Instructions
Delete a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventId | Yes | ID of the event to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"eventId": {
"description": "ID of the event to delete",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}