list_teams
Retrieve and display all teams within a Sentry organization using its slug. Access team information quickly through the Sentry MCP server.
Instructions
List all teams in an organization in Sentry.
Use this tool when you need to:
- View all teams in a Sentry organization 
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| organizationSlug | No | The organization's slug. This will default to the first org you have access to. | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "organizationSlug": {
      "description": "The organization's slug. This will default to the first org you have access to.",
      "type": "string"
    }
  },
  "type": "object"
}