# 查询特定服务端支持的MC版本

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /mirrors/{server}:
    get:
      summary: 查询特定服务端支持的MC版本
      deprecated: false
      description: 查询特定服务端支持的MC版本
      tags:
        - 服务端下载源
      parameters:
        - name: server
          in: path
          description: 服务端
          required: true
          example: paper
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          example: MSL API Test
          schema:
            type: string
            default: MSL API Test
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      description:
                        type: string
                      versions:
                        type: array
                        items:
                          type: string
                    required:
                      - description
                      - versions
                required:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: ''
                data:
                  description: '[原版端推荐]Paper是基于Spigot的高性能Fork,仅支持插件'
                  versions:
                    - 1.21.11
                    - 1.21.11-pre3
                    - 1.21.11-pre4
                    - 1.21.11-pre5
                    - 1.21.11-rc1
                    - 1.21.11-rc2
                    - 1.21.11-rc3
                    - 1.21.10
                    - 1.21.9
                    - 1.21.9-pre2
                    - 1.21.9-pre3
                    - 1.21.9-pre4
                    - 1.21.9-rc1
                    - 1.21.8
                    - 1.21.7
                    - 1.21.6
                    - 1.21.5
                    - 1.21.4
                    - 1.21.3
                    - 1.21.1
                    - '1.21'
                    - 1.20.6
                    - 1.20.5
                    - 1.20.4
                    - 1.20.2
                    - 1.20.1
                    - '1.20'
                    - 1.19.4
                    - 1.19.3
                    - 1.19.2
                    - 1.19.1
                    - '1.19'
                    - 1.18.2
                    - 1.18.1
                    - '1.18'
                    - 1.17.1
                    - '1.17'
                    - 1.16.5
                    - 1.16.4
                    - 1.16.3
                    - 1.16.2
                    - 1.16.1
                    - 1.15.2
                    - 1.15.1
                    - '1.15'
                    - 1.14.4
                    - 1.14.3
                    - 1.14.2
                    - 1.14.1
                    - '1.14'
                    - 1.13.2
                    - 1.13.1
                    - '1.13'
                    - 1.13-pre7
                    - 1.12.2
                    - 1.12.1
                    - '1.12'
                    - 1.11.2
                    - 1.10.2
                    - 1.9.4
                    - 1.8.8
                    - 1.7.10
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 服务端下载源
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7956474/apis/api-429587269-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
