list-directory
Retrieve directory contents by specifying a path; optionally list files recursively. Use this tool to efficiently manage and access directory structures on the RateSpot MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the directory to list | |
recursive | No | Whether to list files recursively |
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"
},
"recursive": {
"default": false,
"description": "Whether to list files recursively",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}