get_documentation
Fetch and filter Manticore Search documentation to find specific information or sections from the manual.
Instructions
Fetch documentation from Manticore Search manual.
Use list_documentation() first to discover available files.
Args: file_path: Path to documentation file (e.g., "Searching/KNN.md") content: Optional search term to filter content (returns only matching sections) before: Number of lines before match to include (default: 0) after: Number of lines after match to include (default: 0)
Returns: Documentation content as markdown text
Examples: get_documentation( "Searching/Full_text_matching/Operators.md", content="MATCH", before=2, after=2 )
get_documentation("Creating_a_table/Data_types.md")Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| content | No | ||
| before | No | ||
| after | No |