List ATF Tests
servicenow_list_atf_testsList ServiceNow ATF tests and suites, filter by name and active status, and retrieve sys_ids for executing specific tests.
Instructions
List Automated Test Framework (ATF) tests and test suites available on the instance.
Args:
search (string): Filter by test name
suite_only (boolean): List test suites only (default: false — lists individual tests)
active_only (boolean): Only active tests (default: true)
limit / offset: Pagination
response_format: Output format
Returns: Test names, descriptions, and sys_ids (needed for servicenow_run_atf_test)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–100, default 20) | |
| offset | No | Number of results to skip for pagination (default 0) | |
| search | No | Filter by test name | |
| suite_only | No | List suites instead of individual tests | |
| active_only | No | Only active tests (default: true) | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |