UNPKG

aceternityui-mcp

Version:

A Model Context Protocol (MCP) server that provides seamless integration with the Aceternity UI Components. This package enables AI assistants and applications to interact with Aceternity UI Components, usage and install commands.

27 lines 630 B
export interface AceternityComponent { name: string; description: string; category: string; installCommand: string; dependencies: string[]; tags: string[]; isPro: boolean; documentation?: string; } export interface ComponentSearchResult { components: AceternityComponent[]; total: number; } export interface ComponentCategory { name: string; components: string[]; description: string; } export interface InstallationInfo { component: string; command: string; withExample: string; dependencies: string[]; steps: string[]; } //# sourceMappingURL=index.d.ts.map