unsuspend-user
Reactivate a suspended GitHub Enterprise user by providing their username, enabling full access to repositories, issues, and workflows through the MCP server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | Username of the user to unsuspend |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"description": "Username of the user to unsuspend",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}