PagerDuty MCP Server

by wpfleger96
Verified

show_schedule

Show detailed information about a given schedule.

Args: schedule_id (str): The ID of the schedule to get since (str): The start of the time range over which you want to search. Defaults to 2 weeks before until if an until is given. (optional) until (str): The end of the time range over which you want to search. Defaults to 2 weeks after since if a since is given. (optional)

Returns: Dict[str, Any]: Schedule object with detailed information

Input Schema

NameRequiredDescriptionDefault
schedule_idYes
sinceNo
untilNo

Input Schema (JSON Schema)

{ "properties": { "schedule_id": { "title": "Schedule Id", "type": "string" }, "since": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Since" }, "until": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Until" } }, "required": [ "schedule_id" ], "title": "show_scheduleArguments", "type": "object" }