navigate_section
Retrieve navigation context for a specific section in a document, including parent, sibling, and child sections, enabling structured document exploration and analysis.
Instructions
Get navigation context for a section (parent, siblings, children).
Args:
doc_id: Document identifier
section_id: Section ID to navigate to
Returns:
Navigation context with related sections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
section_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"title": "Doc Id",
"type": "string"
},
"section_id": {
"title": "Section Id",
"type": "string"
}
},
"required": [
"doc_id",
"section_id"
],
"title": "navigate_sectionArguments",
"type": "object"
}