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.

19 lines 633 B
/** * Org-mode parser for extracting structure from .org files */ import { BaseParser } from './BaseParser'; import { Note } from '../models/types'; export declare class ORGParser implements BaseParser { parse(filePath: string, content: string | Buffer, notesRoot: string): Promise<Note>; private extractTitle; private extractHeadings; private extractLinks; private extractTags; private extractMetadata; private cleanOrgSyntax; private extractContext; private createSlug; supports(extension: string): boolean; getSupportedExtensions(): string[]; } //# sourceMappingURL=ORGParser.d.ts.map