/** * Parser configuration - synchronized with API /parsers endpoint * Maps MCP tool IDs to A-Parser internal names * * IMPORTANT: This file should match the real parsers from redis.ayga.tech/parsers * Last updated: 2026-01-19 */ export interface ParserConfig { id: string; name: string; category: string; description: string; aparserName: string; } export declare const PARSERS: ParserConfig[]; export declare function getParserById(id: string): ParserConfig | undefined; export declare function getParserByAParserName(name: string): ParserConfig | undefined; export declare function getParsersByCategory(category: string): ParserConfig[]; export declare function getAllCategories(): string[]; //# sourceMappingURL=parsers.d.ts.map