quasar_list_sections
List all Quasar documentation sections or view pages within a specific section. Navigate and explore the docs structure.
Instructions
List all available Quasar documentation sections, or list pages within a specific section.
Use this to discover what documentation is available and navigate the docs structure.
Args:
section (string, optional): Show pages within a specific section (e.g., 'vue-components')
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: When listing all sections (no section parameter): For markdown: Formatted list of sections with titles, descriptions, and page counts For JSON: { "total_sections": number, "sections": [ { "name": string, // Section identifier (e.g., 'vue-components') "path": string, // URL path "title": string, // Human-readable title "description": string, // Section description "page_count": number // Number of pages in section } ] }
When listing pages in a section: For markdown: List of pages with titles and paths For JSON: { "section": string, "total_pages": number, "pages": [ { "title": string, "path": string, "url": string } ] }
Examples:
List all sections: (no parameters)
List component pages: section="vue-components"
List plugins: section="quasar-plugins"
Get JSON format: section="style", response_format="json"
Errors:
Returns available sections if specified section doesn't exist
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| section | No | Optional: show pages within a specific section (e.g., 'vue-components') | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |