list_scheduled_events
ActiveTool of Calendly
declared in 0.1.0
List scheduled meetings (events). Requires a user URI OR an organization URI (get them from current_user). Filter by status, time window, and paginate. Returns event URIs/UUIDs, names, start/end times, status, and locations.
Parameters schema
{
"type": "object",
"required": [
"_apiKey"
],
"properties": {
"user": {
"type": "string",
"description": "User URI (from current_user). Provide user OR organization."
},
"count": {
"type": "number",
"description": "Number of results per page (default 20, max 100)."
},
"status": {
"enum": [
"active",
"canceled"
],
"type": "string",
"description": "Filter by event status."
},
"_apiKey": {
"type": "string",
"description": "Calendly personal access token (sent as Bearer token)"
},
"page_token": {
"type": "string",
"description": "Token from a previous response for the next page."
},
"organization": {
"type": "string",
"description": "Organization URI (from current_user). Provide user OR organization."
},
"max_start_time": {
"type": "string",
"description": "ISO 8601 timestamp; only events starting at/before this time."
},
"min_start_time": {
"type": "string",
"description": "ISO 8601 timestamp; only events starting at/after this time."
}
}
}Parent server
Calendly
https://github.com/pipeworx-io/mcp-calendly
1/7 registries