Skip to main content
FuseFuse
IntegrationsGithubActions

Remove GitHub organization member

Remove a member from the installation organization.

Agent markdown

organization.members.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

  • organization.members:write

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

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