list_events
Retrieve and display calendar events within a specified date range, including recurring instances, using the Microsoft MCP server. Ideal for managing and organizing Outlook schedules efficiently.
Instructions
List calendar events within specified date range, including recurring event instances
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_id | Yes | ||
| days_ahead | No | ||
| days_back | No | ||
| include_details | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"days_ahead": {
"default": 7,
"title": "Days Ahead",
"type": "integer"
},
"days_back": {
"default": 0,
"title": "Days Back",
"type": "integer"
},
"include_details": {
"default": true,
"title": "Include Details",
"type": "boolean"
}
},
"required": [
"account_id"
],
"type": "object"
}