List Scoped Applications & Plugins
servicenow_list_applicationsList ServiceNow scoped applications and active plugins with optional filtering by name, global scope, and active status. Get name, scope, version, vendor, and status for app management.
Instructions
List installed ServiceNow scoped applications and active plugins.
Args:
search (string): Filter by application name or scope prefix
include_global (boolean): Include the global scope app (default: false)
active_only (boolean): Only return active applications (default: true)
limit / offset: Pagination
response_format: Output format
Returns: Applications with name, scope, version, vendor, and status
Examples:
List all custom applications → active_only=true, include_global=false
Find ITSM-related apps → search="ITSM"
Check installed integrations → search="integration"
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 app name or scope prefix | |
| active_only | No | Only active applications (default: true) | |
| include_global | No | Include the global scope (default: false) | |
| response_format | No | Output format: 'markdown' (default) for human-readable or 'json' for structured data | markdown |