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.

16 lines 553 B
/** * Plain text parser for extracting structure from text files */ import { BaseParser } from './BaseParser'; import { Note } from '../models/types'; export declare class TXTParser implements BaseParser { parse(filePath: string, content: string | Buffer, notesRoot: string): Promise<Note>; private extractHeadings; private extractLinks; private extractTags; private extractMetadata; private createSlug; supports(extension: string): boolean; getSupportedExtensions(): string[]; } //# sourceMappingURL=TXTParser.d.ts.map