PagerDuty MCP Server

by wpfleger96
Verified

list_teams

List teams in your PagerDuty account.

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

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of teams 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_teamsArguments", "type": "object" }