home / mcp / domainkits mcp server

DomainKits MCP Server

Provides domain intelligence endpoints for NRDS, NS Reverse, and domain counts.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "abtdomain-domainkits-mcp": {
      "url": "https://mcp.domainkits.com/mcp/nrds"
    }
  }
}

You have access to DomainKits MCP Server, a set of MCP-compatible endpoints and local runtime configurations that let you query newly registered domains, perform NS reverse lookups, and count domains by type. Use MCP clients to connect to the HTTP endpoints or run the local MCP runtime to customize how you access these domain intelligence tools, enabling efficient research, investment analysis, brand protection, and security research workflows.

How to use

Connect to DomainKits MCP Server using an MCP client to access three services: Newly Registered Domains Search (NRDS), NS Reverse Lookup, and Domain Count by Type. You can use the HTTP endpoints directly from a client or run the local MCP runtime that proxies requests to these endpoints through a local command. You can filter results by keyword, TLD, domain length, presence of numbers or hyphens, and more to suit your research needs.

How to install

Prerequisites: install Node.js and npm (or ensure you have a runtime capable of executing npx commands). You also need an MCP client or a compatible runtime to consume the MCP endpoints.

Step 1: Set up the HTTP MCP endpoints in your client configuration by adding the following server entries. These point to the remote MCP server for NRDS, NS Reverse, and Count endpoints.

{
  "type": "http",
  "name": "domainkits_nrds",
  "url": "https://mcp.domainkits.com/mcp/nrds",
  "args": []
}
```
```json
{
  "type": "http",
  "name": "domainkits_ns_reverse",
  "url": "https://mcp.domainkits.com/mcp/ns-reverse",
  "args": []
}
```
```json
{
  "type": "http",
  "name": "domainkits_count",
  "url": "https://mcp.domainkits.com/mcp/count",
  "args": []
}

Step 2: If you prefer running the MCP runtime locally, configure the following local runtimes which wrap the remote endpoints via npx. This enables you to issue requests through a local MCP proxy without editing your client code extensively.

{
  "type": "stdio",
  "name": "domainkits_nrds",
  "command": "npx",
  "args": [
    "mcp-remote",
    "https://mcp.domainkits.com/mcp/nrds",
    "--transport",
    "http-first"
  ]
}
```
```json
{
  "type": "stdio",
  "name": "domainkits_ns_reverse",
  "command": "npx",
  "args": [
    "mcp-remote",
    "https://mcp.domainkits.com/mcp/ns-reverse",
    "--transport",
    "http-first"
  ]
}
```
```json
{
  "type": "stdio",
  "name": "domainkits_count",
  "command": "npx",
  "args": [
    "mcp-remote",
    "https://mcp.domainkits.com/mcp/count",
    "--transport",
    "http-first"
  ]
}

Additional configuration and tools

Gemini CLI integration is available to install the DomainKits MCP extension, enabling you to access these endpoints from Gemini workflows.

gemini extensions install https://github.com/AKBTdomain/domainkits-mcp

Available tools and endpoints

The MCP tools provided include the following operations for querying domain data. You can call these tools through your MCP client to retrieve structured results.

{
  "name": "search_nrds",
  "description": "Search for newly registered domains by keyword with optional filters such as days, TLD, and domain characteristics."
}
```
```json
{
  "name": "search_ns_reverse",
  "description": "Look up gTLD domains hosted on a specific nameserver with optional filters."
}
```
```json
{
  "name": "count_domains",
  "description": "Count domains by type with filters across multiple data sources."
}

Notes and limits

Important usage limits apply: 10 requests per minute per IP and a maximum of 5 domains per response. NRDS data may have a 24–48 hour delay.

Security and privacy

IP addresses and search queries are anonymized. Logs are retained for 7 days, and no personal data is collected.

License and access

License: MIT. Full access is available through NRDS and NS-Reverse endpoints with the provided MCP connections.

Additional notes

Use the NRDS and NS Reverse endpoints to research domain trends, brand protection needs, and cybersecurity indicators. Ensure your usage complies with privacy protections and the intended use cases described in the access policy.

Available tools

search_nrds

Search for newly registered domains by keyword with optional filters such as days, TLD, and domain characteristics.

search_ns_reverse

Look up gTLD domains hosted on a specific nameserver with optional filters.

count_domains

Count domains by type with filters across multiple data sources.