UNPKG

mcp-ai-agent-guidelines

Version:

A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices

16 lines 583 B
import { BaseDiagramHandler } from "./base.handler.js"; /** * Handler for mindmap diagrams. * Generates hierarchical mindmap visualizations. */ export declare class MindmapHandler extends BaseDiagramHandler { readonly diagramType = "mindmap"; generate(description: string, theme?: string): string; /** * Parse natural language description to extract mindmap structure. * @param description - Natural language description * @returns Parsed mindmap configuration */ private parseMindmapDescription; } //# sourceMappingURL=mindmap.handler.d.ts.map