list_docs
Retrieve metadata for all available documentation files on the Dedalus MCP Documentation Server. Optional subdirectory parameter supports targeted file listing for efficient document management.
Instructions
List all available documentation files
Args:
directory: Optional subdirectory to list (relative to docs root)
Returns:
List of document metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | No |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Directory"
}
},
"title": "list_docsArguments",
"type": "object"
}