vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
8 lines (7 loc) • 379 B
JavaScript
import { z } from 'zod';
export const workflowRunnerInputSchema = z.object({
workflowName: z.string().min(1)
.describe("The exact name of the predefined workflow to run (must match a key in workflows.json)."),
workflowInput: z.record(z.any()).optional()
.describe("An object containing input parameters required by the specified workflow (if any)."),
});