Smithery

triggers_types.list

Retrieve a list of available trigger types with optional filtering by toolkit. Results are paginated and can be filtered by toolkit.

Remote smithery/composio

Other tools also called triggers_types.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "nullable": true,
      "description": "Number of items per page, max allowed is 1000"
    },
    "cursor": {
      "type": "string",
      "description": "Cursor for pagination. The cursor is a base64 encoded string of the page and limit. The page is the page number and the limit is the number of items per page. The cursor is used to paginate through the items. The cursor is not required for the first page."
    },
    "toolkit_slugs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "slack",
        "github"
      ],
      "nullable": true,
      "description": "Array of toolkit slugs to filter triggers by"
    },
    "toolkit_versions": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "type": "string"
        },
        {
          "type": "object",
          "description": "Object representation of parsed bracket notation",
          "additionalProperties": {
            "type": "string"
          }
        }
      ],
      "description": "Toolkit version specification. Use \"latest\" for latest versions or bracket notation for specific versions per toolkit."
    }
  }
}