UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

13 lines 496 B
import { z } from 'zod'; export declare const workflowRunnerInputSchema: z.ZodObject<{ workflowName: z.ZodString; workflowInput: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>; }, "strip", z.ZodTypeAny, { workflowName: string; workflowInput?: Record<string, any> | undefined; }, { workflowName: string; workflowInput?: Record<string, any> | undefined; }>; export type WorkflowRunnerInput = z.infer<typeof workflowRunnerInputSchema>; //# sourceMappingURL=schema.d.ts.map