Smithery

tool_router.session.toolkits.list

Retrieves a cursor-paginated list of toolkits available in the tool router session. Includes toolkit metadata, composio-managed auth schemes, and connected accounts if available. Optionally filter by specific toolkit slugs.

Remote smithery/composio

Other tools also called tool_router.session.toolkits.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 50,
      "minimum": 1,
      "description": "Number of items per page, max allowed is 50"
    },
    "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"
    },
    "toolkits": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": "gmail,slack,github",
      "nullable": true,
      "description": "Optional comma-separated list of toolkit slugs to filter by. If provided, only these toolkits will be returned, overriding the session configuration."
    },
    "session_id": {
      "type": "string",
      "format": "toolRouterSessionId",
      "example": "trs_1a2b3c4d5e6f",
      "description": "The unique identifier of the tool router session"
    },
    "is_connected": {
      "type": "boolean",
      "default": false,
      "nullable": true,
      "description": "Whether to filter by connected toolkits. If provided, only connected toolkits will be returned."
    }
  }
}