domain-search-mcp 1.12.0 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +29 -14
  2. package/data/common-words.json +1 -1
  3. package/data/english-words.json +1 -0
  4. package/dist/fallbacks/godaddy-ns-gate.d.ts +30 -0
  5. package/dist/fallbacks/godaddy-ns-gate.d.ts.map +1 -0
  6. package/dist/fallbacks/godaddy-ns-gate.js +116 -0
  7. package/dist/fallbacks/godaddy-ns-gate.js.map +1 -0
  8. package/dist/lib.d.ts +1 -1
  9. package/dist/lib.d.ts.map +1 -1
  10. package/dist/naming/clearance.d.ts +1 -0
  11. package/dist/naming/clearance.d.ts.map +1 -1
  12. package/dist/naming/clearance.js +7 -2
  13. package/dist/naming/clearance.js.map +1 -1
  14. package/dist/naming/distinctiveness.d.ts.map +1 -1
  15. package/dist/naming/distinctiveness.js +3 -23
  16. package/dist/naming/distinctiveness.js.map +1 -1
  17. package/dist/naming/scorer.d.ts +4 -1
  18. package/dist/naming/scorer.d.ts.map +1 -1
  19. package/dist/naming/scorer.js +14 -0
  20. package/dist/naming/scorer.js.map +1 -1
  21. package/dist/naming/slop-filter.d.ts.map +1 -1
  22. package/dist/naming/slop-filter.js +25 -13
  23. package/dist/naming/slop-filter.js.map +1 -1
  24. package/dist/naming/types.d.ts +2 -0
  25. package/dist/naming/types.d.ts.map +1 -1
  26. package/dist/naming/wordlist.d.ts +3 -0
  27. package/dist/naming/wordlist.d.ts.map +1 -0
  28. package/dist/naming/wordlist.js +48 -0
  29. package/dist/naming/wordlist.js.map +1 -0
  30. package/dist/runtime-context.d.ts +17 -0
  31. package/dist/runtime-context.d.ts.map +1 -0
  32. package/dist/runtime-context.js +25 -0
  33. package/dist/runtime-context.js.map +1 -0
  34. package/dist/server.js +8 -2
  35. package/dist/server.js.map +1 -1
  36. package/dist/services/domain-search.d.ts.map +1 -1
  37. package/dist/services/domain-search.js +7 -0
  38. package/dist/services/domain-search.js.map +1 -1
  39. package/dist/tools/name_project.d.ts +2 -2
  40. package/dist/tools/name_project.d.ts.map +1 -1
  41. package/dist/tools/name_project.js +17 -8
  42. package/dist/tools/name_project.js.map +1 -1
  43. package/dist/toolset.d.ts +10 -2
  44. package/dist/toolset.d.ts.map +1 -1
  45. package/dist/toolset.js +15 -4
  46. package/dist/toolset.js.map +1 -1
  47. package/dist/utils/format.d.ts.map +1 -1
  48. package/dist/utils/format.js +8 -3
  49. package/dist/utils/format.js.map +1 -1
  50. package/docs/API.md +36 -8
  51. package/package.json +1 -1
  52. package/server.json +3 -3
package/README.md CHANGED
@@ -8,9 +8,9 @@
8
8
  [![Glama](https://img.shields.io/badge/Glama-Server-0ea5e9)](https://glama.ai/mcp/servers/@dorukardahan/domain-search-mcp)
9
9
  [![Context7](https://img.shields.io/badge/Context7-Indexed-16a34a)](https://context7.com/dorukardahan/domain-search-mcp)
10
10
 
11
- **Naming engine with availability intelligence** — an MCP server that scores the names your model generates and clears them against domains, socials, and package registries. Works with zero configuration using public RDAP/WHOIS, and optionally enriches results with registrar pricing via a backend you control.
11
+ **Naming engine with availability intelligence** — an MCP server that scores the names your model generates and runs availability checks against domains, socials, and package registries. Works with zero configuration using public RDAP/WHOIS, and optionally enriches results with registrar pricing via a backend you control.
12
12
 
13
- **🆕 v1.12.0**: `name_project` — a two-phase naming engine. Call it once to get generation instructions for your model, call it again with `candidates[]` to get anti-slop scoring, ranking, and live availability clearance across domains, socials, and npm. See [name_project](#name_project) below.
13
+ **🆕 v1.12.0**: `name_project` — a two-phase naming engine. Call it once to get generation instructions for your model, call it again with `candidates[]` to get anti-slop scoring, ranking, and live availability checks across domains, socials, and npm. See [name_project](#name_project) below.
14
14
 
15
15
  **🆕 v1.10.0**: GoDaddy public endpoint integration! Enhanced fallback chain (RDAP → GoDaddy → WHOIS) with premium/auction domain detection. Circuit breaker pattern ensures resilience.
16
16
 
@@ -168,24 +168,35 @@ curl -X POST https://your-domain/api/tools/search_domain \
168
168
 
169
169
  ## Tools
170
170
 
171
- By default only 6 tools are exposed to MCP clients (keeps tool-selection sharp):
172
- `name_project`, `search_domain`, `bulk_search`, `check_socials`, `tld_info`, `ai_health`.
173
- Set `ADVANCED_TOOLS=true` to restore the full 12-tool surface listed below (see
174
- [Environment Variables](#environment-variables)).
171
+ All 12 tools listed below are exposed to MCP clients by default. The 6-tool
172
+ slim profile (`name_project`, `search_domain`, `bulk_search`, `check_socials`,
173
+ `tld_info`, `ai_health`) is opt-in set `SLIM_TOOLS=true` if you want a
174
+ sharper tool-selection surface for simpler client integrations (see
175
+ [Environment Variables](#environment-variables)). A future 2.0 release may
176
+ flip the default to slim.
177
+
178
+ `ADVANCED_TOOLS=true` is a deprecated alias that forces the full surface and
179
+ overrides `SLIM_TOOLS`; it's a harmless no-op today since full is already the
180
+ default.
175
181
 
176
182
  ### name_project
177
183
 
178
184
  **Flagship two-phase naming engine.** Call it once to get lane-by-lane generation
179
185
  instructions for *your* model; call it again with `candidates[]` to get anti-slop
180
- scoring, ranking, and live availability clearance across domains, socials, and npm.
186
+ scoring, ranking, and live availability checks across domains, socials, and npm.
181
187
 
182
188
  - **Modes**: `brief` (describe what you're naming), `auto` (analyze the current
183
189
  workspace), `from_name` (find domains/variants for a name you already like),
184
190
  `from_domain` (fit a project/brand to a domain you found).
185
191
  - **Phase 1** (no `candidates`): returns generation instructions + lane prompts.
186
- - **Phase 2** (`candidates` present): scores + ranks candidates, then clears the
187
- top 12 against `targets.tlds` / `targets.platforms` — omit `targets` for pure
188
- naming with no availability calls.
192
+ - **Phase 2** (`candidates` present): scores + ranks candidates, then checks
193
+ availability for the top 12 against `targets.tlds` / `targets.platforms` —
194
+ omit `targets` for pure naming with no availability calls.
195
+
196
+ > Scores are heuristic rankings for comparing candidates against each other —
197
+ > not objective, universal brandability truth. Availability results reflect a
198
+ > single source checked at one moment in time; re-verify before you register
199
+ > or rely on anything.
189
200
 
190
201
  **Phase 1** — call with no `candidates`:
191
202
  ```json
@@ -210,12 +221,15 @@ Rules: single words or tight compounds, no taglines, no explanations yet. Then c
210
221
  ```
211
222
  | Name | Score | Verdict | Badges | Why |
212
223
  | --- | --- | --- | --- | --- |
213
- | Corda | 97 | - | - | no AI-slop patterns; clean pronunciation and typing |
214
- | Nexify | 60 | - | - | slop: overused prefix "nex-"; slop: overused suffix "-ify" |
224
+ | Corda | 97 strong | - | - | no AI-slop patterns; clean pronunciation and typing |
225
+ | Nexify | 60 middling | - | - | slop: overused prefix "nex-"; slop: overused suffix "-ify" |
215
226
  2 candidates received, 2 passed constraints, top 2 returned.
216
- No clearance targets - pure naming mode.
227
+ No availability-check targets - pure naming mode.
217
228
  ```
218
229
 
230
+ Badges: `tld✓` free to register, `tld$` for sale (aftermarket/premium - registered or priced, not free to register), `tld✗` taken, `tld?` unknown.
231
+ ccTLD checks (`.ai` / `.io` / `.sh` / `.ac`) are cross-checked against native WHOIS/DNS ground truth, not taken on RDAP's word alone.
232
+
219
233
  See [docs/API.md](docs/API.md#name_project) for the full parameter/response schema.
220
234
 
221
235
  ### Core Search
@@ -324,7 +338,8 @@ QWEN_API_KEY=optional_if_secured
324
338
  | `QWEN_INFERENCE_ENDPOINT` | (none) | Your own AI inference endpoint for `suggest_domains_smart` (offline semantic fallback if unset) |
325
339
  | `QWEN_TIMEOUT_MS` | 15000 | AI inference request timeout |
326
340
  | `QWEN_MAX_RETRIES` | 2 | Retry count for AI inference failures |
327
- | `ADVANCED_TOOLS` | false | Set `true` to expose the full 12-tool surface instead of the slim 6-tool default |
341
+ | `SLIM_TOOLS` | false | Set `true` to opt into the slim 6-tool surface instead of the full 12-tool default |
342
+ | `ADVANCED_TOOLS` | false | Deprecated alias for the pre-`SLIM_TOOLS` flag. Set `true` to force the full 12-tool surface and override `SLIM_TOOLS`; no-op since full is already the default |
328
343
 
329
344
  ### Output Format
330
345