create_group
Create a new group in ServiceNow, specifying details such as name, description, members, manager, and email, using the MCP server for streamlined group management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateGroupParams": {
"description": "Parameters for creating a group.",
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"description": "Whether the group is active",
"title": "Active"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the group",
"title": "Description"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Email address for the group",
"title": "Email"
},
"manager": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Manager of the group (sys_id or username)",
"title": "Manager"
},
"members": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of user sys_ids or usernames to add as members",
"title": "Members"
},
"name": {
"description": "Name of the group",
"title": "Name",
"type": "string"
},
"parent": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Parent group (sys_id or name)",
"title": "Parent"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of the group",
"title": "Type"
}
},
"required": [
"name"
],
"title": "CreateGroupParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CreateGroupParams"
}
},
"required": [
"params"
],
"title": "create_groupArguments",
"type": "object"
}