get_calendar_events
Fetch calendar events within a specified time range using the calendar's unique URL. Integrates with DAV MCP Server for CalDAV, CardDAV, and WebDAV services.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarUrl | Yes | The unique identifier (URL) of the calendar from which to fetch events. You can get this from 'get_my_calendars'. | |
timeRangeEnd | No | ISO 8601 datetime for end of range | |
timeRangeStart | No | ISO 8601 datetime for start of range |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"calendarUrl": {
"description": "The unique identifier (URL) of the calendar from which to fetch events. You can get this from 'get_my_calendars'.",
"type": "string"
},
"timeRangeEnd": {
"description": "ISO 8601 datetime for end of range",
"format": "date-time",
"type": "string"
},
"timeRangeStart": {
"description": "ISO 8601 datetime for start of range",
"format": "date-time",
"type": "string"
}
},
"required": [
"calendarUrl"
],
"type": "object"
}