UNPKG

mcp-openalex

Version:

MCP server for accessing scholarly articles and research data from the OpenAlex database

12 lines 416 B
import { z } from 'zod'; /** * Common validation schemas for reuse across tools */ export declare const urlSchema: z.ZodString; export declare const dateSchema: z.ZodString; export declare const timestampSchema: z.ZodString; /** * Validate and parse input with helpful error messages */ export declare function validateInput<T>(schema: z.ZodSchema<T>, input: unknown): T; //# sourceMappingURL=validation.d.ts.map