whodis-mcp-server
Version:
Whodis MCP Server for checking the availability of domain names using WHOIS lookups.
12 lines (11 loc) • 482 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckDomainAvailabilityArgs = void 0;
const zod_1 = require("zod");
// Schema for the arguments expected by the tool
exports.CheckDomainAvailabilityArgs = zod_1.z.object({
domains: zod_1.z
.array(zod_1.z.string().min(1, 'Domain name cannot be empty'))
.min(1, 'At least one domain name is required')
.describe('An array of domain names to check for availability'),
});
;