Smithery
toolkits.list
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.
Remote smithery/composio
Other tools also called toolkits.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."
},
"search": {
"type": "string",
"example": "gmail",
"description": "Search query to filter toolkits by name, slug, or description"
},
"sort_by": {
"enum": [
"usage",
"alphabetically"
],
"type": "string",
"description": "Sort order for returned toolkits"
},
"category": {
"type": "string",
"example": "productivity",
"description": "Filter toolkits by category"
},
"managed_by": {
"enum": [
"composio",
"all",
"project"
],
"type": "string",
"description": "Filter toolkits by who manages them"
},
"include_deprecated": {
"type": "boolean",
"default": false,
"example": true,
"nullable": true,
"description": "Include deprecated toolkits in the response"
}
}
}