get_collection_structure
Retrieve the hierarchical structure of a collection to understand document organization, identify IDs, and view parent-child relationships for better content overview.
Instructions
Retrieves the hierarchical document structure of a collection.
Use this tool when you need to:
- Understand how documents are organized in a collection
- Find document IDs within a specific collection
- See the parent-child relationships between documents
- Get an overview of a collection's content structure
Args:
collection_id: The collection ID to examine
Returns:
Formatted string showing the hierarchical structure of documents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
}
},
"required": [
"collection_id"
],
"title": "get_collection_structureArguments",
"type": "object"
}