Skip to main content
FuseFuse
IntegrationsGithubActions

Add GitHub repository collaborator

Add a collaborator to a repository.

Agent markdown

repositories.collaborators.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

  • repository.administration:write

Input

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

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
    },
    "permission": {
      "type": "string"
    }
  },
  "required": [
    "owner",
    "repo",
    "username"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}