listFiles
List files and directories within a specified path using the Claude Code MCP server, enabling efficient file management and organization.
Instructions
Lists files and directories in a given path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The absolute path to the directory to list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The absolute path to the directory to list",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}