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

# List Skills

> List all skill metadata available for the specified agent.
Returns a list of skill metadata (without content) that the agent has access to.

Args:
    detail_level: "summary" returns only id, name, description (70-90% fewer tokens).
                 "full" returns all metadata fields. Default: "full".



## OpenAPI

````yaml get /api/mcp/list_skills
openapi: 3.1.0
info:
  title: Apigene
  description: Apigene API
  version: 1.0.0
  contact:
    name: Apigene Support
    url: https://app.apigene.ai
    email: support@apigene.ai
servers:
  - url: https://app.apigene.ai
security:
  - BearerAuth: []
paths:
  /api/mcp/list_skills:
    get:
      tags:
        - MCP
      summary: List Skills
      description: >-
        List all skill metadata available for the specified agent.

        Returns a list of skill metadata (without content) that the agent has
        access to.


        Args:
            detail_level: "summary" returns only id, name, description (70-90% fewer tokens).
                         "full" returns all metadata fields. Default: "full".
      operationId: list_skills
      parameters:
        - name: genai_app
          in: query
          required: true
          schema:
            type: string
            description: The name of the GenAI app.
            title: Genai App
          description: The name of the GenAI app.
        - name: app_type
          in: query
          required: false
          schema:
            type: string
            description: The type of the app ('mcp' or 'agent').
            default: agent
            title: App Type
          description: The type of the app ('mcp' or 'agent').
        - name: detail_level
          in: query
          required: false
          schema:
            type: string
            description: >-
              Level of detail: 'summary' (id, name, description only) or 'full'
              (all fields). Default: 'full'.
            default: summary
            title: Detail Level
          description: >-
            Level of detail: 'summary' (id, name, description only) or 'full'
            (all fields). Default: 'full'.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MCPSkillListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    MCPSkillListResponse:
      properties:
        skill_list:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Skill List
          description: List of skill metadata (summary or full based on detail_level)
      type: object
      required:
        - skill_list
      title: MCPSkillListResponse
      description: Response model for list of skills
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        'Authorization: Bearer {token}'

````