delete-user
Remove a user from your instance by specifying the client ID and user ID or email. Ideal for managing user access and maintaining system integrity in the MCP-N8N server.
Instructions
Delete a user from your instance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
idOrEmail | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"idOrEmail": {
"type": "string"
}
},
"required": [
"clientId",
"idOrEmail"
],
"type": "object"
}