> ## Documentation Index
> Fetch the complete documentation index at: https://gomodel-feat-mcp-server.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Inspect one MCP server's current catalog

> Lists the tools, prompts, resources, and resource templates the named server currently exposes through the gateway, after operator tool filters. Names are the upstream originals; the aggregated /mcp endpoint prefixes them with the server name.



## OpenAPI

````yaml /openapi.json get /admin/mcp-servers/{name}/catalog
openapi: 3.0.0
info:
  description: >-
    AI gateway routing requests to multiple LLM providers (OpenAI, Anthropic,
    Gemini, Groq, Fireworks AI, OpenRouter, DeepSeek, Z.ai, xAI, MiniMax, Xiaomi
    MiMo, OpenCode Go, Oracle, Ollama, Bailian). Drop-in OpenAI-compatible API.
  title: GoModel API
  contact: {}
  version: '1.0'
servers:
  - url: '{base_url}'
    description: Edit the base URL to point at your GoModel deployment.
    variables:
      base_url:
        default: http://localhost:8080
        description: Your GoModel deployment URL
security: []
paths:
  /admin/mcp-servers/{name}/catalog:
    get:
      tags:
        - admin
      summary: Inspect one MCP server's current catalog
      description: >-
        Lists the tools, prompts, resources, and resource templates the named
        server currently exposes through the gateway, after operator tool
        filters. Names are the upstream originals; the aggregated /mcp endpoint
        prefixes them with the server name.
      parameters:
        - description: MCP server name
          name: name
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mcpgateway.CatalogView'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GatewayError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GatewayError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GatewayError'
      security:
        - BearerAuth: []
components:
  schemas:
    mcpgateway.CatalogView:
      type: object
      properties:
        instructions:
          type: string
        prompts:
          type: array
          items:
            $ref: '#/components/schemas/mcpgateway.CatalogFeature'
        resources:
          type: array
          items:
            $ref: '#/components/schemas/mcpgateway.CatalogResource'
        server:
          type: string
        status:
          $ref: '#/components/schemas/mcpgateway.ServerStatus'
        templates:
          type: array
          items:
            $ref: '#/components/schemas/mcpgateway.CatalogTemplate'
        tools:
          type: array
          items:
            $ref: '#/components/schemas/mcpgateway.CatalogFeature'
    core.GatewayError:
      type: object
      properties:
        code:
          type: string
          nullable: true
        message:
          type: string
        param:
          type: string
          nullable: true
        provider:
          type: string
        status_code:
          type: integer
        type:
          $ref: '#/components/schemas/core.ErrorType'
    mcpgateway.CatalogFeature:
      type: object
      properties:
        description:
          type: string
        name:
          type: string
    mcpgateway.CatalogResource:
      type: object
      properties:
        description:
          type: string
        name:
          type: string
        uri:
          type: string
    mcpgateway.ServerStatus:
      type: string
      enum:
        - disabled
        - connecting
        - connected
        - degraded
      x-enum-varnames:
        - StatusDisabled
        - StatusConnecting
        - StatusConnected
        - StatusDegraded
    mcpgateway.CatalogTemplate:
      type: object
      properties:
        description:
          type: string
        name:
          type: string
        uri_template:
          type: string
    core.ErrorType:
      type: string
      enum:
        - provider_error
        - rate_limit_error
        - invalid_request_error
        - authentication_error
        - not_found_error
      x-enum-varnames:
        - ErrorTypeProvider
        - ErrorTypeRateLimit
        - ErrorTypeInvalidRequest
        - ErrorTypeAuthentication
        - ErrorTypeNotFound
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````