Skip to main content
List project skills discovered for a runtime target

Tool details

FieldValue
Namelist_skills
GroupProject Primitives

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "runtime_target_kind": {
      "anyOf": [
        {
          "type": "string",
          "enum": [
            "production",
            "environment",
            "preview_branch"
          ],
          "description": "Provide the runtime target kind."
        },
        {
          "type": "null",
          "description": "Provide the runtime target kind."
        }
      ],
      "description": "Provide the runtime target kind."
    },
    "target_environment_id": {
      "anyOf": [
        {
          "type": "string",
          "format": "uuid",
          "description": "Provide the target environment id."
        },
        {
          "type": "null",
          "description": "Provide the target environment id."
        }
      ],
      "description": "Provide the target environment id."
    },
    "target_branch_id": {
      "anyOf": [
        {
          "type": "string",
          "format": "uuid",
          "description": "Provide the target branch id."
        },
        {
          "type": "null",
          "description": "Provide the target branch id."
        }
      ],
      "description": "Provide the target branch id."
    },
    "source_target_kind": {
      "type": "string",
      "enum": [
        "project",
        "production",
        "environment",
        "preview_branch"
      ],
      "description": "Provide the source target kind."
    }
  },
  "required": [
    "project_reference"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Input schema for the list_skills tool."
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier for the record."
          },
          "name": {
            "type": "string",
            "description": "Human-readable name for the record."
          },
          "description": {
            "type": "string",
            "description": "Human-readable description for the record."
          },
          "source_path": {
            "type": "string",
            "description": "The source path associated with this record."
          },
          "allowed_tools": {
            "type": "array",
            "items": {
              "type": "string",
              "description": "One allowed tool item associated with this record."
            },
            "description": "The allowed tools associated with this record."
          }
        },
        "required": [
          "id",
          "name",
          "description",
          "source_path"
        ],
        "additionalProperties": false,
        "description": "Structured skill output schema for MCP tools."
      },
      "description": "Primary record collection."
    }
  },
  "required": [
    "data"
  ],
  "additionalProperties": false,
  "description": "Structured list skills output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}