# Send DomainKts to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nameserver-reverse",
    "name": "DomainKts",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ABTdomain/nameserver-reverse",
    "canonicalUrl": "https://clawhub.ai/ABTdomain/nameserver-reverse",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nameserver-reverse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nameserver-reverse",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "Skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "nameserver-reverse",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T17:01:04.953Z",
      "expiresAt": "2026-05-09T17:01:04.953Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nameserver-reverse",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nameserver-reverse",
        "contentDisposition": "attachment; filename=\"nameserver-reverse-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "nameserver-reverse"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nameserver-reverse"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nameserver-reverse",
    "downloadUrl": "https://openagent3.xyz/downloads/nameserver-reverse",
    "agentUrl": "https://openagent3.xyz/skills/nameserver-reverse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nameserver-reverse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nameserver-reverse/agent.md"
  }
}
```
## Documentation

### DomainKits MCP Server

Domain intelligence tools through MCP-compatible clients.

### Endpoints

EndpointDescriptionhttps://mcp.domainkits.com/mcp/nrdsNewly Registered Domains Searchhttps://mcp.domainkits.com/mcp/ns-reverseNS Reverse Lookup

### Claude Desktop

Edit config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\\Claude\\claude_desktop_config.json

{
  "mcpServers": {
    "domainkits-nrds": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.domainkits.com/mcp/nrds",
        "--transport",
        "http-first"
      ]
    },
    "domainkits-ns-reverse": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.domainkits.com/mcp/ns-reverse",
        "--transport",
        "http-first"
      ]
    }
  }
}

### Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "domainkits-nrds": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.domainkits.com/mcp/nrds"]
    },
    "domainkits-ns-reverse": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.domainkits.com/mcp/ns-reverse"]
    }
  }
}

### Gemini CLI

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

### search_nrds

Search for newly registered domains by keyword.

Parameters:

NameTypeRequiredDefaultDescriptionkeywordstringYes-Search term (a-z, 0-9, hyphen only, max 20 chars)daysintegerYes-1-7positionstringNoanystart, end, or anytldstringNoallFilter by TLD (e.g., com, net, org)

Example:

curl -X POST https://mcp.domainkits.com/mcp/nrds \\
  -H "Content-Type: application/json" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_nrds","arguments":{"keyword":"ai","days":7,"position":"start","tld":"com"}}}'

### search_ns_reverse

Look up gTLD domains hosted on a specific nameserver.

Parameters:

NameTypeRequiredDefaultDescriptionnsstringYes-Nameserver hostname (e.g., ns1.google.com)tldstringNoallFilter by TLD (e.g., com, net, org)min_lenintegerNo-Minimum domain prefix lengthmax_lenintegerNo-Maximum domain prefix length

Example:

curl -X POST https://mcp.domainkits.com/mcp/ns-reverse \\
  -H "Content-Type: application/json" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_ns_reverse","arguments":{"ns":"ns1.google.com","tld":"com","min_len":4,"max_len":8}}}'

### Limits

10 requests per minute per IP
5 domains per response
NRDS data may have 24-48 hour delay

### Full Access

For complete results with advanced filters and export:

NRDS: domainkits.com/search/new
NS Reverse: domainkits.com/tools/ns-reverse

### About

DomainKits - Domain intelligence tools for investors, brand managers, and researchers.

### Privacy

IP addresses anonymized
Search queries anonymized
Logs retained 7 days
No personal data collected

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ABTdomain
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T17:01:04.953Z
- Expires at: 2026-05-09T17:01:04.953Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nameserver-reverse)
- [Send to Agent page](https://openagent3.xyz/skills/nameserver-reverse/agent)
- [JSON manifest](https://openagent3.xyz/skills/nameserver-reverse/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nameserver-reverse/agent.md)
- [Download page](https://openagent3.xyz/downloads/nameserver-reverse)