mcp-openalex
Version:
MCP server for accessing scholarly articles and research data from the OpenAlex database
25 lines • 560 B
TypeScript
import { z } from 'zod';
export declare const GetWorkSchema: 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 getWork(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
//# sourceMappingURL=get-work.d.ts.map