@codervisor/devlog-mcp
Version:
MCP server for managing development logs and working notes
12 lines • 374 B
TypeScript
/**
* Zod to JSON Schema converter for MCP tools
*
* This module converts Zod schemas to JSON Schema format
* required by MCP tool definitions.
*/
import { z } from 'zod';
/**
* Convert a Zod schema to JSON Schema format for MCP tool inputSchema
*/
export declare function zodToJsonSchema(schema: z.ZodSchema<any>): any;
//# sourceMappingURL=schema-converter.d.ts.map