@wordbricks/fetch-mcp
Version:
Model Context Protocol (MCP) server for fetching data from the web
17 lines (16 loc) • 493 B
TypeScript
import { z } from "zod";
declare const ParamsSchema: z.ZodObject<{
html: z.ZodString;
expand: z.ZodDefault<z.ZodBoolean>;
arrayMaxElements: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
expand: boolean;
arrayMaxElements: number;
html: string;
}, {
html: string;
expand?: boolean | undefined;
arrayMaxElements?: number | undefined;
}>;
export declare const convertHtmlToCollapsibleString: (input: z.input<typeof ParamsSchema>) => string;
export {};