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

# List Mcp Hubs

> Return every registered MCP hub.



## OpenAPI

````yaml /versions/2.0.6dev/en/deploy/openapi.json get /hub/mcp
openapi: 3.1.0
info:
  title: AgentScope
  version: 2.0.5
servers: []
security: []
paths:
  /hub/mcp:
    get:
      tags:
        - hub
      summary: List Mcp Hubs
      description: Return every registered MCP hub.
      operationId: list_mcp_hubs_hub_mcp_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/HubInfo'
                type: array
                title: Response List Mcp Hubs Hub Mcp Get
components:
  schemas:
    HubInfo:
      properties:
        hub_id:
          type: string
          title: Hub Id
          description: The id addressing this hub.
        display_name:
          type: string
          title: Display Name
          description: The user-facing hub name.
        description:
          type: string
          title: Description
          description: The user-facing description.
        icon_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon Url
          description: An image identifying the hub, when it has one.
      type: object
      required:
        - hub_id
        - display_name
        - description
      title: HubInfo
      description: One registered hub, as shown in the hub picker.

````