UNPKG

brain-mcp

Version:

Brain MCP Server - Semantic knowledge base access for Claude Code via Model Context Protocol. Provides intelligent search and navigation of files from multiple locations through native MCP tools.

23 lines 779 B
/** * Output formatters optimized for LLM consumption */ import { KnowledgeGraph, GraphNode } from '../models/types'; export declare class LLMFormatter { formatOverview(graph: KnowledgeGraph): string; formatLs(graph: KnowledgeGraph, dirPath?: string): string; formatNoteRead(node: GraphNode, content?: string): string; formatSemanticSearchResults(results: Array<{ notePath: string; chunkId: string; similarity: number; snippet: string; headingContext: string[]; chunkType: string; }>, graph: KnowledgeGraph): string; formatRelatedNotes(related: Array<{ path: string; type: string; reason: string; }>, graph: KnowledgeGraph): string; } //# sourceMappingURL=LLMFormatter.d.ts.map