get_user
Retrieve user details from ServiceNow using email, user ID, or username to streamline user management and data access via the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetUserParams": {
"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"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetUserParams"
}
},
"required": [
"params"
],
"title": "get_userArguments",
"type": "object"
}