UNPKG

mcp-openalex

Version:

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

25 lines 566 B
import { z } from 'zod'; export declare const GetAuthorSchema: z.ZodObject<{ id: z.ZodString; mailto: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; mailto?: string | undefined; }, { id: string; mailto?: string | undefined; }>; export declare function getAuthor(args: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=get-author.d.ts.map