Smithery

auth_configs.list

Retrieves all auth configs for your project. Auth configs define how users authenticate with external services (OAuth, API keys, etc.). Use filters to find configs for specific toolkits or to distinguish between Composio-managed and custom configurations.

Remote smithery/composio

Other tools also called auth_configs.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",
      "description": "Search auth configs by name or id"
    },
    "toolkit_slug": {
      "type": "string",
      "description": "Comma-separated list of toolkit slugs to filter auth configs by"
    },
    "show_disabled": {
      "type": "boolean",
      "default": false,
      "nullable": true,
      "description": "Show disabled auth configs"
    },
    "deprecated_app_id": {
      "type": "string",
      "deprecated": true,
      "description": "The app id to filter by"
    },
    "deprecated_status": {
      "type": "string",
      "deprecated": true,
      "description": "DEPRECATED: This parameter will be removed in a future version."
    },
    "is_composio_managed": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "boolean"
        }
      ],
      "description": "Whether to filter by composio managed auth configs"
    }
  }
}