remove_user_from_group
Remove a user from a specific group in Okta by providing the user ID and group ID through the Okta MCP Server.
Instructions
Remove a user from a group in Okta
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | ID of the group | |
userId | Yes | ID of the user to remove from the group |
Input Schema (JSON Schema)
{
"properties": {
"groupId": {
"description": "ID of the group",
"type": "string"
},
"userId": {
"description": "ID of the user to remove from the group",
"type": "string"
}
},
"required": [
"groupId",
"userId"
],
"type": "object"
}