UNPKG

@logspace/mcp-server

Version:

MCP server for Logspace log analysis integration with AI models.

28 lines 878 B
import { z } from 'zod'; export declare const GetConsoleLogsSchema: z.ZodObject<{ bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>; type: z.ZodOptional<z.ZodEnum<["log", "info", "warn", "error", "debug"]>>; search: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { bugId: string | number; search?: string | undefined; type?: "debug" | "info" | "warn" | "error" | "log" | undefined; }, { bugId: string | number; search?: string | undefined; type?: "debug" | "info" | "warn" | "error" | "log" | undefined; }>; export declare function getConsoleLogs(args: z.infer<typeof GetConsoleLogsSchema>): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=getConsoleLogs.d.ts.map