UNPKG

mcp-server-logzio

Version:

Model Context Protocol server for Logz.io log management platform

30 lines 665 B
import type { Config } from './config.js'; /** * MCP server for Logz.io integration */ export declare class LogzioMcpServer { private readonly server; private readonly client; private readonly logger; constructor(config: Config); /** * Setup MCP protocol handlers */ private setupHandlers; /** * Start the MCP server */ start(): Promise<void>; /** * Shutdown the server gracefully */ private shutdown; /** * Health check - test connection to Logz.io */ healthCheck(): Promise<{ status: string; timestamp: string; }>; } //# sourceMappingURL=server.d.ts.map