UNPKG

whodis-mcp-server

Version:

Whodis MCP Server for checking the availability of domain names using WHOIS lookups.

20 lines (19 loc) 653 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IpAddressToolArgs = void 0; const zod_1 = require("zod"); const IpAddressToolArgs = zod_1.z.object({ ipAddress: zod_1.z .string() .optional() .describe('IP address to lookup (omit for current IP)'), includeExtendedData: zod_1.z .boolean() .optional() .describe('Include extended data like ASN, mobile and proxy detection'), useHttps: zod_1.z .boolean() .optional() .describe('Use HTTPS for API requests (may require paid API key)'), }); exports.IpAddressToolArgs = IpAddressToolArgs;