/** * Type definitions for the MCP server */ /** * Status of the MCP Server */ export declare enum ServerStatus { INITIALIZING = "initializing", RUNNING = "running", STOPPING = "stopping", STOPPED = "stopped" } /** * Server event types */ export declare enum ServerEventType { START = "start", STOP = "stop", ERROR = "error" } //# sourceMappingURL=types.d.ts.map