Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Query any ServiceNow table with an encoded query (covers change requests, problems, CMDB, catalog tasks, etc.)
servicenow__query_table
{ "type": "object", "properties": { "instanceHost": { "type": "string", "description": "ServiceNow instance host, for example example.service-now.com" }, "tableName": { "type": "string", "description": "Table name, e.g. incident, change_request, problem, cmdb_ci, sc_task" }, "sysparm_query": { "type": "string", "description": "Encoded query, e.g. active=true^priority=1^ORDERBYDESCsys_created_on" }, "sysparm_fields": { "type": "string", "description": "Comma-separated fields to return" }, "sysparm_limit": { "type": "number", "description": "Maximum records to return" }, "sysparm_offset": { "type": "number", "description": "Record offset for pagination" } }, "required": [ "instanceHost", "tableName" ], "description": "Input schema for the servicenow__query_table tool." }