Install Store Application
install_store_appInstall a ServiceNow store application by providing its app ID and version. Optionally load demo data; the operation waits until installation finishes or times out.
Instructions
Install a ServiceNow store application on the target instance. This is a MUTATIVE, LONG-RUNNING operation that blocks until installation completes or times out (default: 30 minutes).
IMPORTANT:
Installation adds new tables, scripts, and configuration to the instance.
Review the application details (use get_app_details) before installing.
Ensure the instance has sufficient capacity and the right entitlements.
Consider testing on a sub-production instance first.
Use search_store_apps with tab_context 'available_for_you' to find apps available for installation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instance | No | The ServiceNow instance auth alias (e.g., "myinstance", "prod"). If not provided, falls back to the SN_AUTH_ALIAS environment variable. | |
| app_id | Yes | The source app ID of the application to install. Use search_store_apps or get_app_details to find this. | |
| version | Yes | The version to install (e.g., "1.2.3"). Use get_app_details to see available versions. | |
| load_demo_data | No | Whether to load demo data during installation. | |
| timeout_minutes | No | Maximum time to wait for installation to complete, in minutes. Default 30. |