Smithery

toolkits.multi.create

Retrieves a comprehensive list of toolkits of their latest versions that are available to the authenticated project. Toolkits represent integration points with external services and applications, each containing a collection of tools and triggers. This endpoint supports filtering by category and management type, as well as different sorting options. You can optionally specify a list of toolkit slugs to fetch specific toolkits.

Remote smithery/composio

Other tools also called toolkits.multi.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "nullable": true,
      "description": "body parameter"
    },
    "cursor": {
      "type": "string",
      "description": "body parameter"
    },
    "sort_by": {
      "enum": [
        "usage",
        "alphabetically"
      ],
      "type": "string",
      "description": "Determines how toolkits should be sorted in the response"
    },
    "category": {
      "type": "string",
      "example": "productivity",
      "description": "Category ID or name to filter toolkits by"
    },
    "toolkits": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "github",
        "slack",
        "gmail"
      ],
      "description": "Array of toolkit slug identifiers to retrieve"
    },
    "managed_by": {
      "enum": [
        "composio",
        "all",
        "project"
      ],
      "type": "string",
      "description": "Entity responsible for managing the toolkits"
    }
  }
}