ServiceNow MCP Server

by osomai
Verified

create_script_include

Generate custom server-side scripts in ServiceNow by defining access, client callability, and script content, enabling tailored functionality within the platform.

Instructions

Create a new script include in ServiceNow

Input Schema

NameRequiredDescriptionDefault
paramsYes

Input Schema (JSON Schema)

{ "$defs": { "CreateScriptIncludeParams": { "description": "Parameters for creating a script include.", "properties": { "access": { "default": "package_private", "description": "Access level of the script include", "title": "Access", "type": "string" }, "active": { "default": true, "description": "Whether the script include is active", "title": "Active", "type": "boolean" }, "api_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "API name of the script include", "title": "Api Name" }, "client_callable": { "default": false, "description": "Whether the script include is client callable", "title": "Client Callable", "type": "boolean" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Description of the script include", "title": "Description" }, "name": { "description": "Name of the script include", "title": "Name", "type": "string" }, "script": { "description": "Script content", "title": "Script", "type": "string" } }, "required": [ "name", "script" ], "title": "CreateScriptIncludeParams", "type": "object" } }, "properties": { "params": { "$ref": "#/$defs/CreateScriptIncludeParams" } }, "required": [ "params" ], "title": "create_script_includeArguments", "type": "object" }
ID: wfdzusqbvb