get_component_docs
Retrieve complete documentation for Modus Web Components including attributes, events, and usage examples to understand component implementation and design guidelines.
Instructions
Get the complete documentation for a specific Modus Web Component including attributes, events, and usage examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
component | Yes | The component name (e.g., "button", "card", "modal") |
Input Schema (JSON Schema)
{
"properties": {
"component": {
"description": "The component name (e.g., \"button\", \"card\", \"modal\")",
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}