UNPKG

reactbits-mcp-server

Version:

MCP Server for React Bits - Access 99+ React components with animations, backgrounds, and UI elements

23 lines (22 loc) 741 B
import { z } from 'zod'; /** * Schema for list_components tool parameters */ export declare const listComponentsSchema: z.ZodObject<{ category: z.ZodOptional<z.ZodEnum<["Animations", "Backgrounds", "Components", "TextAnimations"]>>; }, "strip", z.ZodTypeAny, { category?: "Animations" | "Backgrounds" | "Components" | "TextAnimations" | undefined; }, { category?: "Animations" | "Backgrounds" | "Components" | "TextAnimations" | undefined; }>; /** * Handle list_components tool requests * @param params - Tool parameters * @returns Promise with list of available components */ export declare function handleListComponents(params: any): Promise<{ content: Array<{ type: string; text: string; }>; }>;