> ## 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.

# Get a release

> Retrieve release details including status, git metadata, pipeline logs, and MCP endpoint URL.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/smithery/openapi.documented.yml get /servers/{qualifiedName}/releases/{id}
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/{id}:
    get:
      tags:
        - servers
      summary: Get a release
      description: >-
        Retrieve release details including status, git metadata, pipeline logs,
        and MCP endpoint URL.
      operationId: getServers:namespaceReleases:id
      parameters:
        - 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.
        - schema:
            type: string
          in: path
          name: id
          required: true
      responses:
        '200':
          description: Release info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentInfo'
        '404':
          description: Server or release 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
            });


            const release = await client.servers.releases.get('id', {
            qualifiedName: 'qualifiedName' });


            console.log(release.id);
components:
  schemas:
    DeploymentInfo:
      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'
        logs:
          description: Pipeline log entries. Only included when fetching a single release.
          type: array
          items:
            $ref: '#/components/schemas/DeploymentLogEntry'
        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
      additionalProperties: false
    DeploymentError:
      type: object
      properties:
        error:
          type: string
          example: Server not found
      required:
        - error
      additionalProperties: false
    DeploymentLogEntry:
      type: object
      properties:
        stage:
          type: string
          enum:
            - deploy
            - scan
            - metadata
            - publish
          description: >-
            Pipeline stage: deploy (bundle upload), scan (security/OAuth check),
            metadata (tool discovery), publish (generated artifacts).
        level:
          type: string
          description: 'Log level: ''start'', ''end'', ''info'', ''success'', or ''failure''.'
        message:
          type: string
          description: Human-readable log message.
        timestamp:
          type: string
          description: ISO 8601 timestamp of the log entry.
        error:
          $ref: '#/components/schemas/DeploymentLogEntryError'
          description: Error details, present only when the stage failed.
      required:
        - stage
        - level
        - message
        - timestamp
      additionalProperties: false
    DeploymentLogEntryError:
      type: object
      properties:
        message:
          type: string
      additionalProperties: false
      id: DeploymentLogEntryError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Smithery API key as Bearer token

````