PagerDuty MCP Server

by wpfleger96
Verified

list_schedules

List the on-call schedules.

Args: query (str): Filter schedules whose names contain the search query (optional)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of schedules matching the specified criteria

Input Schema

NameRequiredDescriptionDefault
queryNo

Input Schema (JSON Schema)

{ "properties": { "query": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Query" } }, "title": "list_schedulesArguments", "type": "object" }