UNPKG

@logspace/mcp-server

Version:

MCP server for Logspace log analysis integration with AI models.

25 lines 759 B
import { z } from 'zod'; export declare const SmartAnalysisSchema: z.ZodObject<{ bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>; depth: z.ZodDefault<z.ZodOptional<z.ZodEnum<["quick", "standard", "comprehensive"]>>>; }, "strip", z.ZodTypeAny, { bugId: string | number; depth: "quick" | "standard" | "comprehensive"; }, { bugId: string | number; depth?: "quick" | "standard" | "comprehensive" | undefined; }>; export declare function smartAnalysis(args: z.infer<typeof SmartAnalysisSchema>): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=smartAnalysis.d.ts.map