Tool details
| Field | Value |
|---|---|
| Name | list_integrations |
| Group | Integrations |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"search": {
"type": "string",
"description": "Search query to filter integrations by name or description"
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 100,
"description": "Number of results per page (default: 20, max: 100)",
"default": 20
},
"cursor": {
"type": "string",
"description": "Pagination cursor from previous response"
}
},
"additionalProperties": false,
"description": "Input schema for the list_integrations tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Integration identifier"
},
"display_name": {
"type": "string",
"description": "Human-readable name"
},
"icon": {
"type": [
"string",
"null"
],
"description": "Icon filename (e.g., gmail.svg)"
},
"description": {
"type": "string",
"description": "Brief description of the integration"
},
"auth_type": {
"type": "string",
"description": "Authentication type: oauth2, oauth1, or api-key"
},
"tool_count": {
"type": "number",
"description": "Number of available tools"
},
"prompt_count": {
"type": "number",
"description": "Number of available prompts"
}
},
"required": [
"name",
"display_name",
"description",
"auth_type",
"tool_count",
"prompt_count"
],
"additionalProperties": false,
"description": "One data item associated with this tool result."
},
"description": "Primary result records returned by the tool."
},
"total": {
"type": "number",
"description": "Total number of integrations matching the query"
},
"page_info": {
"type": "object",
"properties": {
"self": {
"type": [
"string",
"null"
],
"description": "Cursor that refers to the current page."
},
"first": {
"type": "object",
"description": "The first associated with this tool result."
},
"next": {
"type": [
"string",
"null"
],
"description": "Cursor for the next page when pagination is available."
},
"prev": {
"type": [
"string",
"null"
],
"description": "Cursor for the previous page when pagination is available."
}
},
"required": [
"self",
"first",
"next",
"prev"
],
"additionalProperties": false,
"description": "Pagination cursor values for traversing the result set."
}
},
"required": [
"data",
"total",
"page_info"
],
"additionalProperties": false,
"description": "Structured result returned by the list_integrations tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}