UNPKG

reactbits-mcp-server

Version:

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

23 lines (22 loc) 543 B
import { z } from 'zod'; /** * Schema for get_component_demo tool parameters */ export declare const getComponentDemoSchema: z.ZodObject<{ componentName: z.ZodString; }, "strip", z.ZodTypeAny, { componentName: string; }, { componentName: string; }>; /** * Handle get_component_demo tool requests * @param params - Tool parameters * @returns Promise with component demo code */ export declare function handleGetComponentDemo(params: any): Promise<{ content: Array<{ type: string; text: string; }>; }>;