get_user
Retrieve specific user details from ServiceNow by providing a user ID, username, or email address using the ServiceNow MCP Server integration.
Instructions
Get a specific user in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Email address of the user | ||
user_id | No | User ID or sys_id | |
user_name | No | Username of the user |
Input Schema (JSON Schema)
{
"description": "Parameters for getting a user.",
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Email address of the user",
"title": "Email"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User ID or sys_id",
"title": "User Id"
},
"user_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Username of the user",
"title": "User Name"
}
},
"title": "GetUserParams",
"type": "object"
}