bigparse
Version:
MCP server that gives Claude instant, intelligent access to your codebase using Language Server Protocol
16 lines • 561 B
TypeScript
import { EventEmitter } from 'events';
export interface InstallProgress {
status: 'starting' | 'running' | 'success' | 'error';
message: string;
output?: string;
error?: string;
}
export declare class LanguageServerInstaller extends EventEmitter {
private allowedCommands;
installLanguageServer(language: string): Promise<InstallProgress>;
private validateCommand;
private runInstallCommand;
private verifyInstallation;
getInstallScript(language: string): Promise<string | null>;
}
//# sourceMappingURL=installer.d.ts.map