Skip to main content
FuseFuse
IntegrationsGithubActions

Add GitHub team member

Add a user to a GitHub team.

Agent markdown

teams.members.add · GitHub · v1

Details

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

Scopes

  • organization.members:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
orgstringYesminLength 1
team_slugstringYesminLength 1
usernamestringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "org": {
      "type": "string",
      "minLength": 1
    },
    "team_slug": {
      "type": "string",
      "minLength": 1
    },
    "username": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "org",
    "team_slug",
    "username"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}