UNPKG

@inso_web/els-mcp

Version:

MCP-сервер поверх INSO Error Logs Service. Read-only tools (search, analytics, fingerprinting, correlations) для подключения Claude Desktop/Code и ChatGPT к логам ошибок. Streamable HTTP transport + stdio для npx-запуска.

26 lines 855 B
import { z } from 'zod'; import type { ElsClient } from '../elsClient.js'; import type { ToolResult } from '../types.js'; export declare const triageRecentCriticalInputShape: { minutesBack: z.ZodDefault<z.ZodNumber>; serviceName: z.ZodOptional<z.ZodString>; sampleSize: z.ZodDefault<z.ZodNumber>; }; export declare const triageRecentCriticalToolDef: { name: string; title: string; description: string; inputShape: { minutesBack: z.ZodDefault<z.ZodNumber>; serviceName: z.ZodOptional<z.ZodString>; sampleSize: z.ZodDefault<z.ZodNumber>; }; }; type Args = { minutesBack: number; serviceName?: string; sampleSize: number; }; export declare function handleTriageRecentCritical(args: Args, client: ElsClient): Promise<ToolResult>; export {}; //# sourceMappingURL=triageRecentCritical.d.ts.map