whodis-mcp-server
Version:
Whodis MCP Server for checking the availability of domain names using WHOIS lookups.
17 lines (16 loc) • 609 B
TypeScript
import { z } from 'zod';
declare const IpAddressToolArgs: z.ZodObject<{
ipAddress: z.ZodOptional<z.ZodString>;
includeExtendedData: z.ZodOptional<z.ZodBoolean>;
useHttps: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
useHttps?: boolean | undefined;
includeExtendedData?: boolean | undefined;
ipAddress?: string | undefined;
}, {
useHttps?: boolean | undefined;
includeExtendedData?: boolean | undefined;
ipAddress?: string | undefined;
}>;
type IpAddressToolArgsType = z.infer<typeof IpAddressToolArgs>;
export { IpAddressToolArgs, type IpAddressToolArgsType };