UNPKG

aindreyway-mcp-codex-keeper

Version:

An intelligent MCP server that serves as a guardian of development knowledge, providing AI assistants with curated access to latest documentation and best practices

38 lines (37 loc) 816 B
/** * Main server class for the documentation keeper */ export declare class DocumentationServer { private server; private fsManager; private docs; constructor(); /** * Sets up error handlers for the server */ private setupErrorHandlers; /** * Sets up tool handlers for the server */ private setupToolHandlers; /** * Lists documentation sources with optional filtering */ private listDocumentation; /** * Adds new documentation source */ private addDocumentation; /** * Updates documentation content from source */ private updateDocumentation; /** * Searches through documentation content */ private searchDocumentation; /** * Starts the server */ run(): Promise<void>; }