create_event
Schedule calendar events by specifying details like subject, start/end times, location, and attendees. Integrates with Microsoft Outlook via MCP server for efficient event management.
Instructions
Create a calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
attendees | No | ||
body | No | ||
end | Yes | ||
location | No | ||
start | Yes | ||
subject | Yes | ||
timezone | No | UTC |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"attendees": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Attendees"
},
"body": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Body"
},
"end": {
"title": "End",
"type": "string"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location"
},
"start": {
"title": "Start",
"type": "string"
},
"subject": {
"title": "Subject",
"type": "string"
},
"timezone": {
"default": "UTC",
"title": "Timezone",
"type": "string"
}
},
"required": [
"account_id",
"subject",
"start",
"end"
],
"type": "object"
}