get-component-docs
Retrieve detailed documentation for Shadcn UI components by specifying the component name, enabling efficient integration and usage in projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
component | Yes | Name of the component to get documentation for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"component": {
"description": "Name of the component to get documentation for",
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}