UNPKG

@sofianedjerbi/knowledge-tree-mcp

Version:

MCP server for hierarchical project knowledge management

18 lines 559 B
/** * Path building logic * Assembles the final path from components */ import { PathComponents } from './types.js'; /** * Builds the final path from components */ export declare function buildPath(components: PathComponents): string; /** * Normalizes a user-provided path */ export declare function normalizeUserPath(userPath: string): string; /** * Suggests alternative paths based on the title */ export declare function suggestAlternativePaths(primaryPath: string, alternativeCategories: string[]): string[]; //# sourceMappingURL=builder.d.ts.map