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.
15 lines • 525 B
TypeScript
/**
* PDF parser for extracting text and structure from PDF files
*/
import { BaseParser } from './BaseParser';
import { Note } from '../models/types';
export declare class PDFParser implements BaseParser {
parse(filePath: string, content: string | Buffer, notesRoot: string): Promise<Note>;
private extractHeadings;
private extractLinks;
private extractTags;
private createSlug;
supports(extension: string): boolean;
getSupportedExtensions(): string[];
}
//# sourceMappingURL=PDFParser.d.ts.map