File Operations MCP Server

list_directory

List contents of a directory with detailed metadata

Input Schema

NameRequiredDescriptionDefault
pathYesPath of directory to list
recursiveNoWhether to list contents recursively

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path of directory to list", "type": "string" }, "recursive": { "default": false, "description": "Whether to list contents recursively", "type": "boolean" } }, "required": [ "path" ], "type": "object" }