UNPKG

markov-exa-mcp-server

Version:

A Model Context Protocol server with Exa for web search, academic paper search, and Twitter/X.com search. Provides real-time web searches with configurable tool selection, allowing users to enable or disable specific search capabilities. Supports customiz

16 lines 521 B
#!/usr/bin/env node import { z } from "zod"; export declare const configSchema: z.ZodObject<{ exaApiKey: z.ZodOptional<z.ZodString>; enabledTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; debug: z.ZodDefault<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { debug: boolean; exaApiKey?: string | undefined; enabledTools?: string[] | undefined; }, { exaApiKey?: string | undefined; enabledTools?: string[] | undefined; debug?: boolean | undefined; }>; //# sourceMappingURL=index.d.ts.map