Skip to main content
FuseFuse
IntegrationsGithubActions

Remove GitHub repository collaborator

Remove a collaborator from a repository.

Agent markdown

repositories.collaborators.remove · GitHub · v1

Details

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

Scopes

  • repository.administration:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
ownerstringYesminLength 1
repostringYesminLength 1
usernamestringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

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