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

# List releases

> List releases ordered by most recent first. Logs are omitted — fetch a specific release to see logs.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/smithery/openapi.documented.yml get /servers/{qualifiedName}/releases
openapi: 3.1.0
info:
  title: Smithery Platform API
  description: >-
    API for the Smithery platform — discover, deploy, and manage MCP (Model
    Context Protocol) servers. Provides endpoints for browsing the server
    registry, managing deployments, creating scoped access tokens, and
    connecting to MCP servers.
  version: 1.0.0
servers:
  - url: https://api.smithery.ai
security:
  - bearerAuth: []
tags:
  - name: servers
    description: >-
      Browse the MCP server registry, manage server configuration, and handle
      deployments
  - name: skills
    description: Discover and search reusable prompt-based skills for MCP servers
  - name: tools
    description: Search for MCP tools across all registered servers
paths:
  /servers/{qualifiedName}/releases:
    get:
      tags:
        - servers
      summary: List releases
      description: >-
        List releases ordered by most recent first. Logs are omitted — fetch a
        specific release to see logs.
      operationId: getServers:namespaceReleases
      parameters:
        - in: query
          name: page
          schema:
            default: 1
            type: integer
            minimum: 1
            maximum: 9007199254740991
        - in: query
          name: pageSize
          schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 100
        - schema:
            type: string
          in: path
          name: qualifiedName
          required: true
          description: >-
            The server's qualified name (e.g. 'namespace/server' or 'namespace'
            for namespace-only servers). Use %2F to encode the slash.
      responses:
        '200':
          description: Paginated list of releases
          content:
            application/json:
              schema:
                type: object
                properties:
                  releases:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        status:
                          type: string
                          description: >-
                            Current status: QUEUED, WORKING, SUCCESS, FAILURE,
                            FAILURE_SCAN, AUTH_REQUIRED, AUTH_TIMEOUT,
                            CANCELLED, or INTERNAL_ERROR.
                        type:
                          type: string
                          description: >-
                            Release type: hosted_shttp (Smithery-hosted),
                            external_shttp (external URL), or stdio (local
                            binary).
                        commit:
                          description: Git commit SHA that triggered this release.
                          anyOf:
                            - type: string
                            - type: 'null'
                        commitMessage:
                          description: Git commit message associated with this release.
                          anyOf:
                            - type: string
                            - type: 'null'
                        branch:
                          description: Git branch this release was built from.
                          anyOf:
                            - type: string
                            - type: 'null'
                        upstreamUrl:
                          description: >-
                            Upstream MCP server URL. Present only for external
                            releases.
                          anyOf:
                            - type: string
                            - type: 'null'
                        mcpUrl:
                          description: The MCP endpoint URL for connecting to this server.
                          type: string
                          format: uri
                        createdAt:
                          type: string
                          description: ISO 8601 timestamp of when the release was created.
                        updatedAt:
                          type: string
                          description: ISO 8601 timestamp of the last status change.
                      required:
                        - id
                        - status
                        - type
                        - createdAt
                        - updatedAt
                  pagination:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                      pageSize:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                      totalPages:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                      totalCount:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                    required:
                      - currentPage
                      - pageSize
                      - totalPages
                      - totalCount
                required:
                  - releases
                  - pagination
                id: DeploymentListPage
        '404':
          description: Server not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentError'
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Smithery from '@smithery/api';


            const client = new Smithery({
              apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted
            });


            // Automatically fetches more pages as needed.

            for await (const releaseListResponse of
            client.servers.releases.list('qualifiedName')) {
              console.log(releaseListResponse.id);
            }
components:
  schemas:
    DeploymentError:
      type: object
      properties:
        error:
          type: string
          example: Server not found
      required:
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Smithery API key as Bearer token

````