Claude Code MCP

listFiles

Lists files and directories in a given path

Input Schema

NameRequiredDescriptionDefault
pathYesThe 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" }