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

# Get an MCP registry server version

> Returns a specific version of an MCP registry server by name and version.



## OpenAPI

````yaml /openapi.json get /api/svc/mcp-registry/v0.1/servers/{mcpRegistryServerName}/versions/{version}
openapi: 3.1.0
info:
  title: TrueFoundry API
  description: API for TrueFoundry
  version: 0.1.0
  contact: {}
servers:
  - url: https://{controlPlaneURL}
    variables:
      controlPlaneURL:
        default: app.truefoundry.com
        description: Control Plane URL
security: []
tags:
  - name: Agent
  - name: Agent Skills
  - name: Applications
  - name: Metrics
  - name: Apply
  - name: Artifacts
  - name: Audit Logs
  - name: Clusters
  - name: Jobs
  - name: Logs
  - name: MCP Registry
  - name: MCP Servers V2
  - name: MLRepos
  - name: Model Deployments
  - name: Models
  - name: Personal Access Tokens
  - name: Prompts
  - name: Provider Integrations
  - name: SCIM v2
  - name: Secret Groups
  - name: Secrets
  - name: Teams
  - name: Traces
  - name: Users
  - name: Virtual Accounts
  - name: Role Bindings
  - name: Workspaces
  - name: Provider Accounts
paths:
  /api/svc/mcp-registry/v0.1/servers/{mcpRegistryServerName}/versions/{version}:
    get:
      tags:
        - MCP Registry
      summary: Get an MCP registry server version
      description: >-
        Returns a specific version of an MCP registry server by name and
        version.
      operationId: MCPRegistry.getRegistryServerVersion
      parameters:
        - name: mcpRegistryServerName
          required: true
          in: path
          description: URL-encoded server name
          schema:
            example: com.example%2Fmy-server
            type: string
        - name: version
          required: true
          in: path
          description: >-
            Server version ('latest' for latest version, or an exact version
            like '1.0.0')
          schema:
            example: latest
            type: string
        - name: include_deleted
          required: false
          in: query
          description: 'Include deleted servers in results (default: false)'
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: The requested MCP registry server entry.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegistryServerEntry'
      security:
        - jwt: []
components:
  schemas:
    RegistryServerEntry:
      type: object
      properties:
        server:
          description: Server details
          allOf:
            - $ref: '#/components/schemas/RegistryServerDetail'
        _meta:
          type: object
          additionalProperties:
            type: object
          description: Registry metadata
      required:
        - server
      title: RegistryServerEntry
      x-fern-type-name: RegistryServerEntry
    RegistryServerDetail:
      type: object
      properties:
        $schema:
          type: string
          minLength: 1
          description: JSON Schema URI for this server.json format
          example: >-
            https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json
        description:
          type: string
          minLength: 1
          maxLength: 100
          description: Clear human-readable explanation of server functionality.
          example: >-
            MCP server providing weather data and forecasts via OpenWeatherMap
            API
        name:
          type: string
          pattern: ^[a-zA-Z0-9.-]+/[a-zA-Z0-9._-]+$
          description: >-
            Server name in reverse-DNS format. Must contain exactly one forward
            slash separating namespace from server name.
          example: com.my-tenant/my-server
        title:
          type: string
          minLength: 1
          maxLength: 100
          description: Optional human-readable title or display name for the MCP server.
          example: My MCP Server
        version:
          type: string
          minLength: 1
          maxLength: 255
          description: Version string for this server. SHOULD follow semantic versioning.
          example: 1.0.2
        websiteUrl:
          type: string
          description: >-
            Optional URL to the server's homepage, documentation, or project
            website.
          example: https://modelcontextprotocol.io/examples
        remotes:
          description: Remote connection endpoints
          type: array
          items:
            $ref: '#/components/schemas/RegistryRemote'
      required:
        - $schema
        - description
        - name
        - version
      title: RegistryServerDetail
      x-fern-type-name: RegistryServerDetail
    RegistryRemote:
      type: object
      properties:
        type:
          type: string
          enum:
            - streamable-http
          description: Transport type (streamable-http)
          example: streamable-http
        url:
          type: string
          description: URL for streamable-http transport
          example: https://api.example.com/mcp
        variables:
          type: object
          additionalProperties:
            type: object
          description: URL template variables referenced in the remote URL
      required:
        - type
        - url
      title: RegistryRemote
      x-fern-type-name: RegistryRemote
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````