> ## Documentation Index
> Fetch the complete documentation index at: https://open.manus.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# connector.list

> Lists connectors installed in the current user's account. Use the returned IDs in the `connectors` array of [task.create](https://open.manus.ai/docs/v2/task.create) or [task.sendMessage](https://open.manus.ai/docs/v2/task.sendMessage). See the [Connectors](https://open.manus.ai/docs/v2/connectors) guide for setup.

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

<Tip>
  **OAuth scope:** `create_task` or `manage_all_tasks` — see the [Open App](https://open.manus.ai/docs/v2/open-app) guide. With OAuth, only returns connectors that the user has granted to this app.
</Tip>

<Tip>
  **Use in tasks:** Pass connector IDs in the `connectors` array of [task.create](https://open.manus.ai/docs/v2/task.create) or [task.sendMessage](https://open.manus.ai/docs/v2/task.sendMessage).

  **Setup:** See the [Connectors](https://open.manus.ai/docs/v2/connectors) guide for authorization and configuration.
</Tip>


## OpenAPI

````yaml GET /v2/connector.list
openapi: 3.1.0
info:
  title: Manus OpenAPI v2
  description: >-
    API for integrating Manus into your workflow. All responses are wrapped with
    {"ok": true, "request_id": "...", ...} for success and {"ok": false,
    "request_id": "...", "error": {"code": "...", "message": "..."}} for errors.
  version: 2.0.0
servers:
  - url: https://api.manus.ai
security:
  - ApiKeyAuth: []
paths:
  /v2/connector.list:
    get:
      summary: ListConnectors
      description: >-
        Lists connectors installed in the current user's account. Use the
        returned IDs in the `connectors` array of
        [task.create](https://open.manus.ai/docs/v2/task.create) or
        [task.sendMessage](https://open.manus.ai/docs/v2/task.sendMessage). See
        the [Connectors](https://open.manus.ai/docs/v2/connectors) guide for
        setup.
      operationId: openapi.v2.OpenapiV2Service.ListConnectors
      parameters:
        - name: x-manus-api-key
          in: header
          required: false
          schema:
            type: string
          description: >-
            API key for direct authentication. Provide either this or
            `Authorization`, not both. See
            [Authentication](https://open.manus.ai/docs/v2/authentication).
        - name: Authorization
          in: header
          required: false
          schema:
            type: string
            example: Bearer {access_token}
          description: >-
            OAuth2 access token in `Bearer {token}` format. Provide either this
            or `x-manus-api-key`, not both. See the [Open
            App](https://open.manus.ai/docs/v2/open-app) guide.
      responses:
        '200':
          description: Connectors retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    example: true
                    description: Whether the request was successful.
                  request_id:
                    type: string
                    description: Unique identifier for this API request.
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ConnectorInfo'
                    description: Array of connectors installed in the user's account.
        4XX:
          description: Error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
components:
  schemas:
    ConnectorInfo:
      type: object
      description: Information about an available connector.
      properties:
        id:
          type: string
          description: >-
            Unique identifier for the connector. Use this as the connector ID
            when creating tasks.
        name:
          type: string
          description: Display name of the connector.
        type:
          type: string
          enum:
            - builtin
            - byok
            - mcp
          description: >-
            Connector type. "builtin" — built-in connector provided by Manus.
            "byok" — bring-your-own-key connector. "mcp" — MCP (Model Context
            Protocol) connector.
        description:
          type: string
          description: Human-readable description of the connector's functionality.
        category:
          type: string
          description: >-
            Category grouping for the connector (e.g., "productivity",
            "communication").
    ErrorResponse:
      type: object
      description: Standard error response format returned when a request fails.
      properties:
        ok:
          type: boolean
          example: false
          description: Always false for error responses.
        request_id:
          type: string
          description: >-
            Unique identifier for this API request, useful for debugging with
            support.
        error:
          type: object
          description: Error details.
          properties:
            code:
              type: string
              description: >-
                Machine-readable error code (e.g., "invalid_argument",
                "not_found", "permission_denied", "rate_limited").
            message:
              type: string
              description: Human-readable error description explaining what went wrong.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-manus-api-key

````