vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
19 lines • 595 B
TypeScript
import { z } from 'zod';
export declare const sequentialThoughtSchema: z.ZodObject<{
thought: z.ZodString;
next_thought_needed: z.ZodBoolean;
thought_number: z.ZodNumber;
total_thoughts: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
thought: string;
next_thought_needed: boolean;
thought_number: number;
total_thoughts: number;
}, {
thought: string;
next_thought_needed: boolean;
thought_number: number;
total_thoughts: number;
}>;
export type SequentialThought = z.infer<typeof sequentialThoughtSchema>;
//# sourceMappingURL=sequentialThought.d.ts.map