list_directory
Lists the contents of a specified directory path using the MCP File System, enabling easy directory management and file organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Directory path to list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Directory path to list",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}