@logspace/mcp-server
Version:
MCP server for Logspace log analysis integration with AI models.
22 lines • 557 B
TypeScript
import { z } from 'zod';
export declare const AnalyzeSessionSchema: z.ZodObject<{
bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
}, "strip", z.ZodTypeAny, {
bugId: string | number;
}, {
bugId: string | number;
}>;
export declare function analyzeSession(args: z.infer<typeof AnalyzeSessionSchema>): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
//# sourceMappingURL=analyzeSession.d.ts.map