UNPKG

mcp-context-engineering

Version:

The intelligent context optimization system for AI coding assistants. Built with Cole's PRP methodology, Context Portal knowledge graphs, and production-ready MongoDB architecture.

8 lines (7 loc) 276 B
/** * Research Engine - Simplified implementation for real testing */ export declare class ResearchEngine { conductResearch(query: string, depth?: 'basic' | 'comprehensive' | 'exhaustive'): Promise<string[]>; analyzeCodebase(techStack: string[]): Promise<string>; }