@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<{
json: z.ZodString;
expand: z.ZodDefault<z.ZodBoolean>;
arrayMaxElements: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
json: string;
expand: boolean;
arrayMaxElements: number;
}, {
json: string;
expand?: boolean | undefined;
arrayMaxElements?: number | undefined;
}>;
export declare const convertJsonToCollapsibleString: (input: z.input<typeof ParamsSchema>) => string;
export {};