get_outline
Generate a structured document outline or table of contents for improved navigation. Specify the document ID and optionally set the maximum heading depth to analyze hierarchical sections efficiently.
Instructions
Get document outline/table of contents.
Tips: First use this tool to understand document structure after you load a document.
Args:
doc_id: Document identifier
max_depth: Maximum heading depth to include, defaults to 3
Returns:
Formatted document outline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
max_depth | No |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"title": "Doc Id",
"type": "string"
},
"max_depth": {
"default": 3,
"title": "Max Depth",
"type": "integer"
}
},
"required": [
"doc_id"
],
"title": "get_outlineArguments",
"type": "object"
}