Skip to main content
ClaudeWave

Domain intelligence through MCP. Turn Claude, GPT, Gemini into domain agents. Search newly registered domains, WHOIS lookup, check availability, track expired domains, and analyze keyword trends through natural conversation.

MCP ServersRegistry oficial6 estrellas0 forksActualizado today
ClaudeWave Trust Score
70/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 8/22/2026
Install in Claude Code / Claude Desktop
Method: NPX · @domainkits/mcp
Claude Code CLI
claude mcp add domainkits-mcp -- npx -y @domainkits/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "domainkits-mcp": {
      "command": "npx",
      "args": ["-y", "@domainkits/mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

[![Lulu MCPs](https://getlulu.dev/api/mcps/badge/domainkits-mcp-the-domain-name-intelligence)](https://getlulu.dev/mcps/domainkits-mcp-the-domain-name-intelligence)
[![smithery badge](https://smithery.ai/badge/DomainKits/domainkits)](https://smithery.ai/servers/DomainKits/domainkits)

# DomainKits MCP

Domain data server for AI assistants. DomainKits MCP connects Claude, GPT, Gemini, and other AI assistants to live domain registration, DNS, availability, trend, and market data through the [Model Context Protocol](https://modelcontextprotocol.io/).

This is the official MCP server for the DomainKits API, published and maintained by the DomainKits team. DomainKits is built and operated by Lyalpha GmbH, with domain data and infrastructure provided by [ABTdomain](https://abtdomain.com), our domain intelligence and data aggregation platform. This repository is hosted under the ABTdomain GitHub organisation. Learn more about the relationship at [domainkits.com/about](https://domainkits.com/about).

MCP is the **data layer**. For domain industry workflows (naming consultation, competitive analysis, keyword intelligence, expired domain due diligence, and more), see [DomainKits Skills](https://github.com/ABTdomain/domainkits-skills), an open-source collection of workflow prompts that any AI assistant can use on top of this data.

## Tools

### Search
| Tool | Description |
|------|-------------|
| `nrds` | Newly registered domains by keyword, or browse a gTLD |
| `nrds_live` | Live feed of domains registered in the last three days, updated continuously |
| `aged` | Established domains with registration history by keyword, or browse a gTLD |
| `expired` | Domains entering the deletion cycle by keyword, or browse a gTLD |
| `deleted` | Just-dropped domains available for standard registration |
| `active` | Live registered domains |
| `market` | Domains carrying marketplace listing data by keyword, or browse a gTLD |
| `ns_reverse` | Reverse lookup by nameserver |
| `unregistered_ai` | Unregistered short .ai domains (3-letter, pattern-based) |
| `domain_changes` | Registration and status changes to premium .com names over the last 7 days |
| `typosquat` | Typosquat scanner (dnstwist-style permutations) with live registration verification |

### Lookup
| Tool | Description |
|------|-------------|
| `dns` | DNS records (A, AAAA, MX, NS, TXT, SOA) |
| `whois` | WHOIS/RDAP registration data (registrar, dates, status, nameservers) |
| `safety` | Google Safe Browsing status |
| `available` | Single-domain availability with pricing |
| `ip_lookup` | Resolve an IP or hostname to its network operator and approximate location |
| `registrar` | Look up ICANN-accredited registrars by name, alias or IANA ID |
| `epp_status` | Explain a domain EPP status code and what the holder can do about it |
| `tld_check` | Keyword availability across TLDs |
| `keyword_data` | Google Ads keyword data (volume, CPC, competition) |
| `price` | Standard registration and renewal prices by TLD |
| `market_price` | Secondary market listing prices |
| `backlink_summary` | SEO backlink profile |

### Trends
| Tool | Description |
|------|-------------|
| `keywords_trends` | Hot, emerging, and prefix keywords in domain registrations |
| `tld_trends` | Historical registration trends by TLD |
| `tld_rank` | TLD rankings by registration volume |

### Bulk
| Tool | Description |
|------|-------------|
| `bulk_tld` | Keyword popularity across TLDs |
| `bulk_available` | Batch availability check (up to 50 domains) |

### Stateful (require memory)
| Tool | Action | Description |
|------|--------|-------------|
| `preferences` | `get` | Check memory status and saved preferences |
| `preferences` | `set` | Save preferences (TLDs, budget, style, industry) |
| `preferences` | `delete` | Delete all stored data (GDPR Article 17) |
| `monitor` | `get` | Retrieve and check all monitored domains |
| `monitor` | `set` | Create a monitoring task (WHOIS, DNS, page changes) |
| `monitor` | `update` | Save check results for a monitor |
| `monitor` | `delete` | Remove a monitoring task |
| `strategy` | `get` | Retrieve saved strategies with run status |
| `strategy` | `set` | Store user-authored strategy text |
| `strategy` | `update` | Save strategy execution results |
| `strategy` | `delete` | Remove a strategy |
| `usage` | | Current tier, per-group usage, and remaining quota |

Stateful data is server-side and cross-platform: preferences, monitors, and strategies persist across Claude, Gemini, Cursor, and any other MCP client under the same account. All data encrypted at rest in isolated per-user directories.

---

## Quick Start

### Claude Code

```bash
claude mcp add domainkits https://api.domainkits.com/v1/mcp
```

With API key (higher limits):

```bash
claude mcp add domainkits https://api.domainkits.com/v1/mcp --header "X-API-Key: YOUR_KEY"
```

### Claude.ai

Connect DomainKits via **Settings > Connectors**. No manual configuration needed.

### Claude Desktop

Edit your config file:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

**macOS / Linux:**
```json
{
  "mcpServers": {
    "domainkits": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://api.domainkits.com/v1/mcp",
        "--transport",
        "http-first"
      ]
    }
  }
}
```

**Windows:**
```json
{
  "mcpServers": {
    "domainkits": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "mcp-remote",
        "https://api.domainkits.com/v1/mcp",
        "--transport",
        "http-first"
      ]
    }
  }
}
```

**With API key (higher limits):**

macOS / Linux:
```json
{
  "mcpServers": {
    "domainkits": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://api.domainkits.com/v1/mcp",
        "--header",
        "X-API-Key: your-api-key-here",
        "--transport",
        "http-first"
      ]
    }
  }
}
```

Windows:
```json
{
  "mcpServers": {
    "domainkits": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "mcp-remote",
        "https://api.domainkits.com/v1/mcp",
        "--header",
        "X-API-Key: your-api-key-here",
        "--transport",
        "http-first"
      ]
    }
  }
}
```

### Gemini CLI

Edit `~/.gemini/settings.json`:
```json
{
  "mcpServers": {
    "domainkits": {
      "url": "https://api.domainkits.com/v1/mcp"
    }
  }
}
```

With API key:
```json
{
  "mcpServers": {
    "domainkits": {
      "url": "https://api.domainkits.com/v1/mcp",
      "headers": {
        "X-API-Key": "your-api-key-here"
      }
    }
  }
}
```

### Cursor

Edit `~/.cursor/mcp.json`:
```json
{
  "mcpServers": {
    "domainkits": {
      "url": "https://api.domainkits.com/v1/mcp"
    }
  }
}
```

### Other MCP Clients

Endpoint: `https://api.domainkits.com/v1/mcp`

Optional header: `X-API-Key: your-api-key-here`

### Local install (npm)

Prefer a local stdio server? The same tools ship as an npm package:

```bash
npx @domainkits/mcp
```

Set `DOMAINKITS_API_KEY` for higher limits; without it the server runs on the guest quota. Package: [@domainkits/mcp](https://www.npmjs.com/package/@domainkits/mcp).

---

## Skills

DomainKits MCP serves raw data. [DomainKits Skills](https://github.com/ABTdomain/domainkits-skills) are open-source workflow prompts that teach AI assistants how to use that data for domain industry tasks:

- **Brand Protection** -- scan typosquats and lookalike registrations around a brand, evaluated per domain on registration facts
- **Domain Analyze** -- registration, DNS, website, safety, backlink, cross-TLD and market evidence for one domain
- **Domain CMA Valuation** -- comparative market analysis against current for-sale listings
- **Domain Generator** -- creative domain name generation with validation
- **Domain Market Beat** -- time-bounded domain market briefing with source tiers and explicit inference limits
- **Domain Name Advisor** -- naming consultation with availability checking
- **Keyword Intel** -- keyword-level supply, demand, and concentration analysis
- **Keyword Trend Hunter** -- spot trending keywords and validate them against new registration cohorts

Skills work with any MCP client. Add them alongside this server and the AI assistant gains both raw data access and structured workflows.

---

## Access

Works without an API key on a guest quota. A free account raises it; paid tiers raise it further and unlock the full filter set and deeper paging. Current per-tier limits are listed at [domainkits.com/pricing](https://domainkits.com/pricing); the `usage` tool reports the live quota for your own account.

Register free at [domainkits.com](https://domainkits.com/register). [View pricing](https://domainkits.com/pricing).

---

## Examples

**Search and discovery**
- "Find domains with 'solar' registered in the last 7 days"
- "What has been registered in the last few hours with 'agent' in the name?"
- "What .ai domains are expiring this week?"
- "Show me trending keywords in .com registrations"
- "What short domains changed nameservers this week?"

**Lookup**
- "Check DNS and WHOIS for example.com"
- "Is mybrand.ai available? What does it cost?"
- "What domains are on ns1.example.com?"

**Trends**
- "What are the hottest keywords in domain registrations right now?"
- "Compare .ai vs .io registration trends over 90 days"

**Monitoring** (requires memory)
- "Monitor example.com for WHOIS and DNS changes"
- "Save a strategy: find dropping 4-letter .com domains daily"

---

## Privacy

- No tool returns registrant personal data (no PII)
- Memory is off by default and requires explicit consent
- All stored data is encrypted at rest
- Isolated per-user directories
- Full data deletion via `preferences` with `action: delete` (GDPR Article 17)

Full details: [Privacy Policy](https://domainkits.com/privacy) | [Terms of Service](https://domainkits.com/terms)

---

## Links

-
abtdomainagentic-mcpdomaindomain-data-mcpdomain-intelligencedomain-mcpdomain-name-mcpdomain-searchdomainkitsdomainsmcpmodel-context-protocolnameservernameserver-reversenewly-registered-domainsnrdsearch-domain-name

Lo que la gente pregunta sobre domainkits-mcp

¿Qué es ABTdomain/domainkits-mcp?

+

ABTdomain/domainkits-mcp es mcp servers para el ecosistema de Claude AI. Domain intelligence through MCP. Turn Claude, GPT, Gemini into domain agents. Search newly registered domains, WHOIS lookup, check availability, track expired domains, and analyze keyword trends through natural conversation. Tiene 6 estrellas en GitHub y su última actualización registrada es del 2026-08-21.

¿Cómo se instala domainkits-mcp?

+

Puedes instalar domainkits-mcp clonando el repositorio (https://github.com/ABTdomain/domainkits-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar ABTdomain/domainkits-mcp?

+

Nuestro agente de seguridad ha analizado ABTdomain/domainkits-mcp y le ha asignado un Trust Score de 70/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene ABTdomain/domainkits-mcp?

+

ABTdomain/domainkits-mcp es mantenido por ABTdomain. La última actividad registrada en GitHub es del 2026-08-21, con 0 issues abiertos.

¿Hay alternativas a domainkits-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega domainkits-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: ABTdomain/domainkits-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/abtdomain-domainkits-mcp)](https://claudewave.com/repo/abtdomain-domainkits-mcp)
<a href="https://claudewave.com/repo/abtdomain-domainkits-mcp"><img src="https://claudewave.com/api/badge/abtdomain-domainkits-mcp" alt="Featured on ClaudeWave: ABTdomain/domainkits-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a domainkits-mcp