list-categories
Retrieve all available design system categories to organize and access components, layouts, and patterns for development projects.
Instructions
List all design system categories
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:166-182 (handler)The implementation of the `list-categories` MCP tool, which lists keys from `designSystemData`.
server.tool( "list-categories", "List all design system categories", {}, async () => { const categories = Object.keys(designSystemData); return { content: [ { type: "text", text: `Available design system categories: ${categories.join(", ")}`, }, ], }; }, );