Tool: list_integration_instances
Lists all configured instances for a given SOAR Integration. You can also list instances across all
integrations by passing "-" as the integration_id. Each instance returned contains a name
field which is its resource name (e.g., projects/.../integrations/.../instances/{instance_guid}
). The {instance_guid}
at the end of this name is the IntegrationInstance GUIDrequired by the execute_manual_action
tool when running script-based actions.
Retrieves a paginated list of all configured integration instances, which are specific configurations of an integration. This is useful for discovering the specific instances of an integration that are available for use in playbooks and manual actions.
Workflow Integration:
- Used to populate a UI with a list of available integration instances for an analyst to choose from.
- Enables automated systems to discover and verify that required integration instances are present before executing a playbook that depends on them.
- Essential for auditing and managing the inventory of all third-party connections in the SOAR platform.
Use Cases:
- A security analyst lists available integration instances to find the correct instance to use for a specific task.
- A SOAR engineer reviews the list of all integration instances to identify any that need to be updated, configured, or retired.
- An automated script queries for a specific integration instance by name to ensure it is installed before running a playbook that uses its actions.
Example Usage:
-
list_integration_instances(projectId='123', region='us', customerId='abc', integrationId='my-integration') -
list_integration_instances(projectId='123', region='us', customerId='abc', integrationId='-')
Next Steps (using MCP-enabled tools):
- Use the GUID from the
namefield of an instance as theIntegrationInstancevalue in thepropertiesdictionary when callingexecute_manual_actionfor script-based actions.
The following sample demonstrate how to use curl
to invoke the list_integration_instances
MCP tool.
| Curl Request |
|---|
curl --location 'https://chronicle.googleapis.com/mcp' \ --header 'content-type: application/json' \ --header 'accept: application/json, text/event-stream' \ --data '{ "method": "tools/call", "params": { "name": "list_integration_instances", "arguments": { // provide these details according to the tool' s MCP specification } } , "jsonrpc" : "2.0" , "id" : 1 } ' |
Input Schema
Request message for ListIntegrationInstances.
ListIntegrationInstancesRequest
| JSON representation |
|---|
{ "projectId" : string , "customerId" : string , "region" : string , "integrationId" : string , "pageSize" : integer , "pageToken" : string , "filter" : string , "orderBy" : string } |
| Fields | |
|---|---|
projectId
|
Required. Google Cloud project ID. |
customerId
|
Required. Chronicle customer ID. |
region
|
Required. Chronicle region (e.g., "us", "europe"). |
integrationId
|
The ID of the integration to list instances for (required). If "-" is provided, instances for all integrations will be listed. |
pageSize
|
The maximum number of integration instances to return in a single response. If unspecified, the server will use a default page size. |
pageToken
|
A token for fetching a specific page of results, obtained from a previous call. |
filter
|
A filter string to apply to the list of integration instances. |
orderBy
|
The field to order the results by. |
Output Schema
Response message for ListIntegrationInstances.
ListIntegrationInstancesResponse
| JSON representation |
|---|
{
"integrationInstances"
:
[
{
object (
|
| Fields | |
|---|---|
integrationInstances[]
|
The list of IntegrationInstances. |
nextPageToken
|
Optional. A token, which can be sent as |
totalSize
|
The total number of IntegrationInstances. |
IntegrationInstance
| JSON representation |
|---|
{ "name" : string , "environment" : string , "displayName" : string , "parameters" : [ { object ( |
name
string
Identifier. The unique name of the integration instance. Format: projects/{project}/locations/{location}/instances/{instance}/integrations/{integration}/integrationInstances/{instance}
environment
string
Required. The integration instance environment.
displayName
string
Optional. The display name of the integration instance. Automatically generated if not assigned. Limited to 110 characters.
parameters[]
object (
IntegrationInstanceParameter
)
Optional. Integration's parameters.
integrationIdentifier
string
Output only. The integration identifier.
identifier
string
Output only. The integration instance identifier.
Union field _description
.
_description
can be only one of the following:
description
string
Optional. The integration instance description. Limited to 1500 characters.
Union field _configured
.
_configured
can be only one of the following:
configured
boolean
Output only. Determines whether the integration instance is configured.
Union field _remote
.
_remote
can be only one of the following:
remote
boolean
Output only. True if the integration instance is a remote instance. Instance is created with remote = false by default.
Union field _agent
.
_agent
can be only one of the following:
agent
string
Optional. The agent identifier for a remote integration instance
Union field _system_default
.
_system_default
can be only one of the following:
systemDefault
boolean
Output only. Indicates whether the integration instance is the system default.
IntegrationInstanceParameter
| JSON representation |
|---|
{ "id" : string , "displayName" : string , "type" : enum ( |
id
string ( int64
format)
Output only. The unique id of the integration instance parameter.
displayName
string
Output only. The integration instance parameter display name.
type
enum (
IntegrationParameterType
)
Output only. The integration instance parameter type.
Union field _description
.
_description
can be only one of the following:
description
string
Output only. The integration instance parameter description.
Union field _property_name
.
_property_name
can be only one of the following:
propertyName
string
Output only. The integration instance parameter property name.
Union field _mandatory
.
_mandatory
can be only one of the following:
mandatory
boolean
Output only. Indicates if the parameter is required when configuring the integration instance.
Union field _value
.
_value
can be only one of the following:
value
string
Optional. The parameter's value.
Tool Annotations
Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌

