update-user
Modify user profile details on GitHub Enterprise, including email, name, company, location, bio, blog, and Twitter username, via the GitHub Enterprise MCP Server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bio | No | Biography for the user | |
blog | No | URL of the user's blog or website | |
company | No | Company for the user | |
No | The email address for the user | ||
location | No | Location for the user | |
name | No | Full name for the user | |
twitter_username | No | Twitter username for the user | |
username | Yes | Username of the user to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bio": {
"description": "Biography for the user",
"type": "string"
},
"blog": {
"description": "URL of the user's blog or website",
"type": "string"
},
"company": {
"description": "Company for the user",
"type": "string"
},
"email": {
"description": "The email address for the user",
"type": "string"
},
"location": {
"description": "Location for the user",
"type": "string"
},
"name": {
"description": "Full name for the user",
"type": "string"
},
"twitter_username": {
"description": "Twitter username for the user",
"type": "string"
},
"username": {
"description": "Username of the user to update",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}