import { ServiceBase } from "../service/service-base"; export declare class MCPService extends ServiceBase { private static mcpServer; static getName(): string; constructor(); protected initialize(): Promise; /** * Optional: Add a method to explicitly stop the server if needed. * ServiceBase doesn't seem to have a standard shutdown hook, so manual call might be necessary. */ stopServer(): Promise; private onLoggerOutput; }