Smithery

connected_accounts.list

Retrieves all connected accounts for your project. Connected accounts represent authenticated user connections to external services (e.g., a user's Gmail account, Slack workspace). Filter by toolkit, status, user ID, or auth config to find specific connections.

Remote smithery/composio

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

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "nullable": true,
      "description": "The limit of the connected accounts to return"
    },
    "cursor": {
      "type": "string",
      "nullable": true,
      "description": "The cursor to paginate through the connected accounts"
    },
    "order_by": {
      "enum": [
        "created_at",
        "updated_at"
      ],
      "type": "string",
      "default": "created_at",
      "description": "The order by of the connected accounts"
    },
    "statuses": {
      "type": "array",
      "items": {
        "enum": [
          "INITIALIZING",
          "INITIATED",
          "ACTIVE",
          "FAILED",
          "EXPIRED",
          "INACTIVE",
          "REVOKED"
        ],
        "type": "string"
      },
      "nullable": true,
      "description": "The status of the connected account"
    },
    "user_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "The user ids of the connected accounts"
    },
    "account_type": {
      "enum": [
        "PRIVATE",
        "SHARED",
        "ALL"
      ],
      "type": "string",
      "description": "[Experimental] Filter by sharing model. Default (omitted) returns PRIVATE only — shared accounts must be requested explicitly. Pass SHARED for only shared accounts, or ALL for PRIVATE + SHARED.",
      "x-experimental": true
    },
    "toolkit_slugs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true,
      "description": "The toolkit slugs of the connected accounts"
    },
    "auth_config_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "authConfigId"
      },
      "nullable": true,
      "description": "The auth config ids of the connected accounts"
    },
    "order_direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "description": "The order direction of the connected accounts"
    },
    "connected_account_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "connectedAccountId"
      },
      "nullable": true,
      "description": "The connected account ids to filter by"
    }
  }
}