create_event
Create new calendar events or meetings in Microsoft Outlook by specifying subject, date, time, location, and optional details like attendees or calendar name. Manage events locally with privacy-focused processing.
Instructions
Create a new calendar event or meeting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | Semicolon-separated list of attendee email addresses (optional) | |
body | No | Event description/body (optional) | |
calendar | No | Calendar name (optional) | |
endDate | No | End date in MM/DD/YYYY format (optional, defaults to start date) | |
endTime | No | End time in HH:MM AM/PM format (optional, defaults to 30 minutes after start time) | |
isMeeting | No | Whether this is a meeting with attendees (optional, defaults to false) | |
location | No | Event location (optional) | |
startDate | Yes | Start date in MM/DD/YYYY format | |
startTime | Yes | Start time in HH:MM AM/PM format | |
subject | Yes | Event subject/title |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"description": "Semicolon-separated list of attendee email addresses (optional)",
"type": "string"
},
"body": {
"description": "Event description/body (optional)",
"type": "string"
},
"calendar": {
"description": "Calendar name (optional)",
"type": "string"
},
"endDate": {
"description": "End date in MM/DD/YYYY format (optional, defaults to start date)",
"type": "string"
},
"endTime": {
"description": "End time in HH:MM AM/PM format (optional, defaults to 30 minutes after start time)",
"type": "string"
},
"isMeeting": {
"description": "Whether this is a meeting with attendees (optional, defaults to false)",
"type": "boolean"
},
"location": {
"description": "Event location (optional)",
"type": "string"
},
"startDate": {
"description": "Start date in MM/DD/YYYY format",
"type": "string"
},
"startTime": {
"description": "Start time in HH:MM AM/PM format",
"type": "string"
},
"subject": {
"description": "Event subject/title",
"type": "string"
}
},
"required": [
"subject",
"startDate",
"startTime"
],
"type": "object"
}