list_directory
Display files and subdirectories within a specified path to organize and navigate project directories efficiently on the Xcode MCP Server.
Instructions
Lists the contents of a directory, showing both files and subdirectories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the directory to list. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Path to the directory to list.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}