UNPKG

mcp-search-tools

Version:

MCP server and client for web search and page viewing tools - DuckDuckGo search and web scraping

22 lines 801 B
import { z } from 'zod'; export declare const downloadFilesSchema: z.ZodObject<{ urls: z.ZodArray<z.ZodString>; directory: z.ZodString; filenames: z.ZodOptional<z.ZodArray<z.ZodString>>; maxRetries: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; retryDelay: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; concurrency: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; }, z.core.$strip>; export type DownloadFilesInput = z.infer<typeof downloadFilesSchema>; interface DownloadFilesResult { content: [ { type: 'text'; text: string; } ]; } export declare function downloadFilesTool(input: DownloadFilesInput): Promise<DownloadFilesResult>; export {}; //# sourceMappingURL=download-files.d.ts.map