UNPKG

@sofianedjerbi/knowledge-tree-mcp

Version:

MCP server for hierarchical project knowledge management

19 lines 654 B
/** * Topic extraction logic * Extracts meaningful topics from titles while preserving context */ /** * Slugifies text to create URL-friendly strings */ export declare function slugify(text: string): string; /** * Extracts the main topic from the title * Preserves context instead of just returning the technology name */ export declare function extractTopic(title: string): string; /** * Extracts a filename that includes context * This is different from extractTopic as it focuses on the specific action/concept */ export declare function extractFilename(title: string, detectedTech?: string): string; //# sourceMappingURL=extractor.d.ts.map