get_component_details
Retrieve comprehensive details, documentation, and examples for specific shadcn/ui components. Input the component name (e.g., 'accordion', 'button') to access relevant information for development and integration.
Instructions
Get detailed information about a specific shadcn/ui component
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentName | Yes | Name of the shadcn/ui component (e.g., "accordion", "button") |
Input Schema (JSON Schema)
{
"properties": {
"componentName": {
"description": "Name of the shadcn/ui component (e.g., \"accordion\", \"button\")",
"type": "string"
}
},
"required": [
"componentName"
],
"type": "object"
}