get-block-docs
Retrieve detailed documentation for specific Shadcn UI blocks to facilitate integration and usage in development projects. Supports efficient block management through natural language interactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block | Yes | Name of the block to get documentation for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"block": {
"description": "Name of the block to get documentation for",
"type": "string"
}
},
"required": [
"block"
],
"type": "object"
}