Skip to main content
Glama

PrimeNG MCP Server

by hnkatze
ComponentDoc.ts1.78 kB
/** * Component documentation models and interfaces */ /** * Property information for a PrimeNG component */ export interface ComponentProperty { name: string; type: string; default?: string; description: string; } /** * Event information for a PrimeNG component */ export interface ComponentEvent { name: string; parameters: string; description: string; } /** * Method information for a PrimeNG component */ export interface ComponentMethod { name: string; parameters: string; description: string; } /** * Complete documentation for a PrimeNG component */ export interface ComponentDoc { name: string; description: string; importStatement: string; moduleImport: string; basicUsage: string; properties?: ComponentProperty[]; events?: ComponentEvent[]; methods?: ComponentMethod[]; } /** * Cache metadata for tracking freshness and versions */ export interface CacheMetadata { version: string; lastUpdate: number; componentCount: number; } /** * Cache entry with TTL */ export interface CacheEntry<T> { data: T; timestamp: number; ttl: number; } /** * Section within a guide document */ export interface GuideSection { heading: string; content: string; codeBlocks?: string[]; } /** * Guide documentation (for setup/configuration pages) */ export interface GuideDoc { name: string; title: string; description: string; sections: GuideSection[]; url: string; } /** * Configuration options for the server */ export interface ServerConfig { cache: { enabled: boolean; ttl: number; location: string; }; scraping: { timeout: number; retries: number; rateLimit: number; }; logging: { level: 'debug' | 'info' | 'warn' | 'error'; file?: string; }; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hnkatze/PrimeNG_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server