quasar_get_page
Fetch any Quasar documentation page by path. Supports markdown and JSON output formats.
Instructions
Get any Quasar documentation page by its path.
Use this for non-component documentation like style guides, plugins, CLI docs, getting started guides, etc.
Args:
path (string, required): Path to the documentation page. Examples:
'vue-components/btn' - Component docs
'style/color-palette' - Style documentation
'quasar-plugins/notify' - Plugin docs
'quasar-cli-vite/quasar-config-file' - CLI configuration
'start/installation' - Getting started
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: For markdown: Full page content with documentation For JSON: { "requested_path": string, // Original path input "resolved_path": string, // Actual file path found "url": string, // Quasar.dev URL "content": string, // Page content "truncated": boolean // Whether content was truncated }
Examples:
Get color palette: path="style/color-palette"
Get notify plugin: path="quasar-plugins/notify"
Get CLI config: path="quasar-cli-vite/quasar-config-file"
Errors:
Returns "Page not found" with suggestions if path doesn't exist
Automatically tries index.md for directory paths
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the documentation page (e.g., 'vue-components/btn', 'style/color-palette', 'quasar-plugins/notify') | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |