{ "name": "domain-search-mcp", "version": "1.13.1", "mcpName": "io.github.dorukardahan/domain-search-mcp", "description": "Zero-config domain availability MCP for Claude & ChatGPT. AI-powered suggestions via Qwen 7B. RDAP → GoDaddy → WHOIS fallback chain with premium/auction detection. Stdio + HTTP transports.", "main": "dist/server.js", "types": "dist/server.d.ts", "exports": { ".": { "types": "./dist/lib.d.ts", "default": "./dist/lib.js" }, "./server": "./dist/server.js", "./package.json": "./package.json" }, "bin": { "domain-search-mcp": "bin/domain-search-mcp" }, "scripts": { "build": "npm run clean && tsc", "start": "node dist/server.js", "start:http": "node dist/server.js --http", "dev": "tsx watch src/server.ts", "dev:http": "tsx src/server.ts --http", "test": "jest", "test:unit": "jest --testPathPattern=tests/unit", "test:integration": "jest --testPathPattern=tests/integration", "test:watch": "jest --watch", "coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "clean": "rm -rf dist", "dataset:generate": "node scripts/generate-domain-dataset.js --count 100000 --out data/domain-dataset-100k.jsonl", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "claude", "chatgpt", "ai", "domain", "domain-search", "domain-availability", "godaddy", "porkbun", "namecheap", "whois", "rdap", "registrar", "premium-domain", "dns", "tld" ], "author": "Doruk Ardahan", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/dorukardahan/domain-search-mcp.git" }, "bugs": { "url": "https://github.com/dorukardahan/domain-search-mcp/issues" }, "homepage": "https://github.com/dorukardahan/domain-search-mcp#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@asteasolutions/zod-to-openapi": "^7.3.4", "@modelcontextprotocol/sdk": "~1.29.0", "axios": "^1.6.0", "cors": "^2.8.5", "dotenv": "^16.3.0", "express": "^5.2.1", "express-rate-limit": "^8.2.1", "ioredis": "^5.8.2", "zod": "^3.22.0" }, "devDependencies": { "@types/cors": "^2.8.19", "@types/express": "^5.0.6", "@types/jest": "^29.5.0", "@types/node": "^20.10.0", "jest": "^29.7.0", "ts-jest": "^29.1.0", "tsx": "^4.6.0", "typescript": "^5.3.0" } }