Discover Tables
servicenow_discover_tablesSearch and list ServiceNow tables by name, label, or scope to explore the data model.
Instructions
Search and list ServiceNow tables by name, label, or scope. Useful for exploring the data model.
Args:
search (string): Filter by table name or label
scope (string): Filter by application scope prefix (e.g., 'x_company', 'sn_', 'global')
extendable_only (boolean): Only tables that can be extended (default: false)
limit / offset: Pagination
response_format: Output format
Returns: Table names, labels, parent classes, and scopes
Examples:
Find all incident-related tables → search="incident"
List custom application tables → scope="x_"
Find CMDB tables → search="cmdb"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–100, default 20) | |
| scope | No | Filter by scope prefix (e.g., 'x_company_', 'sn_', 'global') | |
| offset | No | Number of results to skip for pagination (default 0) | |
| search | No | Filter by table name or label (partial match) | |
| extendable_only | No | Only extendable tables | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |