get_script_include
Retrieve a specific script include by ID or name from ServiceNow using the ServiceNow MCP Server to streamline development and debugging processes.
Instructions
Get a specific script include from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetScriptIncludeParams": {
"description": "Parameters for getting a script include.",
"properties": {
"script_include_id": {
"description": "Script include ID or name",
"title": "Script Include Id",
"type": "string"
}
},
"required": [
"script_include_id"
],
"title": "GetScriptIncludeParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetScriptIncludeParams"
}
},
"required": [
"params"
],
"title": "get_script_includeArguments",
"type": "object"
}