Skip to main content
FuseFuse
IntegrationsGithubActions

List GitHub teams

List teams in the installation organization.

Agent markdown

teams.list · GitHub · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • organization.members:read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
orgstringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
teamsarray<object>Yes
teams[]objectYesadditionalProperties false
teams[].idintegerYes
teams[].slugstringYes
teams[].namestringYes

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "org": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "org"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "teams": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "integer"
          },
          "slug": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "slug",
          "name"
        ]
      }
    }
  },
  "required": [
    "teams"
  ]
}