# Available Domain Search

## Links

- Product page URL: https://www.agentpmt.com/marketplace/available-domain-search
- Product markdown URL: https://www.agentpmt.com/marketplace/available-domain-search?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/available-domain-search?format=agent-json

## Overview

- Product ID: 6a83b46eb760bd3f1a007895
- Type: connector
- Unit type: request
- Price: 300 credits
- Categories: Developer Tools, Data Validation & Verification, Network & URL Utilities, Marketing, Brand Asset Management, SEO & Search Optimization
- Generated at: 2026-08-19T21:52:28.606Z

### Page Description

Find the perfect domain name — and know instantly whether you can actually register it. Describe your business in plain language and get back a list of short, brandable domain ideas, or bring the shortlist you already have and check every name at once. Search a single domain or up to 1,000 in one pass across .com, .net, .org, .io, .co, .ai, .shop and hundreds of other extensions, see exactly which names are open and which are already taken, and get a direct one-click registration link for every available domain. Ideal for naming a new startup, claiming a domain for a product launch or side project, sourcing landing-page URLs for a marketing campaign, or locking down the matching extensions so nobody else can take your brand.

### Agent Description

Domain name discovery and live availability checking. Use domains_suggest when the user needs ideas: pass keywords, a seed word, or a plain-language business description (max 300 characters) plus an optional limit of 1-100 (default 40); it returns brandable candidates across many TLDs. Use domains_check_availability when the user already has specific names in mind: pass a single domain or a comma-separated list (up to 1,000 per request), each including its TLD; it returns available vs. unavailable names plus close alternatives in other extensions. Suggestions are candidates, not guarantees — always confirm the user's shortlist with domains_check_availability before telling them a name is free. Every result includes a direct per-domain registration deeplink; always surface those links verbatim in your reply so the user can register in one click. Read-only, non-destructive, and requires no credentials or setup.

## Details

### Details

Find the perfect domain name — and know instantly whether you can actually register it. Describe your business in plain language and get back a list of short, brandable domain ideas, or bring the shortlist you already have and check every name at once. Search a single domain or up to 1,000 in one pass across .com, .net, .org, .io, .co, .ai, .shop and hundreds of other extensions, see exactly which names are open and which are already taken, and get a direct one-click registration link for every available domain. Ideal for naming a new startup, claiming a domain for a product launch or side project, sourcing landing-page URLs for a marketing campaign, or locking down the matching extensions so nobody else can take your brand.

### Use Cases

Find available domain names for a new business, Brainstorm brandable domain ideas from a plain-language business description, Check whether a specific domain name is available to register, Bulk check availability across a shortlist of domain names, Compare availability across .com .net .io .co .ai and other TLDs, Secure matching domain extensions to protect a brand, Source landing page domains for a marketing campaign, Name a new product, app, or side project, Get direct registration links for every available domain, Find strong alternatives when the .com is already taken

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Documentation

No platform documentation is currently linked to this product.

## Integration Details

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp#platform=claude
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp#platform=chatgpt
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp#platform=cursor
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp#platform=windsurf

Use the local router for command-based MCP clients. It forwards requests to `https://api.agentpmt.com/mcp` and does not execute tools locally.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "6a83b46eb760bd3f1a007895",
    "parameters": {
      "action": "domains_check_availability",
      "domains": "example_domains"
    }
  }'
```

### Autonomous Agents

Autonomous agents can access this tool through AgentAddress credit balances or direct x402 payments. Use the Autonomous Agent API reference for endpoint shapes after choosing the access pattern below.

- Autonomous Agent API reference URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents
- Autonomous Agent API reference markdown URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents?format=agent-md
- Credit-Based Access Using AgentAddress: https://www.agentpmt.com/docs/autonomous-agents/credit-based-tool-usage-with-agentaddress
- AgentAddress is preferred for persistent file access, stored platform state, and maximum tool use ability across repeated calls.
- Direct x402 is for independent one-off tool calls that do not require shared files or stored platform state.
- Direct x402 public payments: USDC on Base, Arbitrum, Optimism, Polygon, and Avalanche.

#### Product Skill Package

This product has a published Agent Skill package for product-specific operating instructions.

- Skill slug: available-domain-search
- Version: 1.0.0
- Download SKILL.md: https://raw.githubusercontent.com/AgentPMT/agent-skills/main/skills/available-domain-search/SKILL.md
- Package source: https://github.com/AgentPMT/agent-skills/tree/main/skills/available-domain-search
- OpenClaw listing: https://clawhub.ai/agentpmt/available-domain-search
- OpenClaw install: `openclaw skills install available-domain-search`
- skills.sh install: `npx skills add AgentPMT/agent-skills --skill available-domain-search`
- Last published: 2026-08-19T14:25:24.498Z

### Schema

#### Parameters

- Schema type: external_mcp

```json
{
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to perform on Available Domain Search",
      "enum": [
        "domains_check_availability",
        "domains_suggest",
        "get_instructions"
      ]
    },
    "domains": {
      "description": "Domain name(s) to check for availability. Single domain: 'example.com' OR Multiple domains (comma-separated): 'example.com, test.org, mybrand.io'. Each domain must include TLD extension (.com, .net, .org, etc.). Automatically routes to exact search (1 domain) or bulk search (2+ domains). Maximum 1000 domains per request.",
      "examples": [
        "example.com",
        "example.com, test.org, mybrand.io"
      ],
      "title": "Domains",
      "type": "string"
    },
    "query": {
      "description": "Search query for domain suggestions. Can be: 1) Keywords (e.g., 'tech startup', 'coffee shop') 2) Seed domain name (e.g., 'example') 3) Business description (e.g., 'AI-powered customer service chatbot'). Maximum 300 characters. Longer queries will be optimized using AI.",
      "maxLength": 300,
      "minLength": 1,
      "title": "Query",
      "type": "string"
    },
    "limit": {
      "default": 40,
      "description": "Maximum number of domain suggestions to return. Valid range: 1-100. Default: 40.",
      "maximum": 100,
      "minimum": 1,
      "title": "Limit",
      "type": "integer"
    }
  },
  "required": [
    "action"
  ],
  "actions": [
    {
      "action_name": "domains_check_availability",
      "description": "Check if domain names are available for registration. Works with single domains or lists of multiple domains. Returns formatted results with availability status and registration options ready for display. IMPORTANT: Always display the registration links from the response to the user - each domain has a direct GoDaddy registration URL that must be shown.",
      "input_schema": {
        "properties": {
          "domains": {
            "description": "Domain name(s) to check for availability. Single domain: 'example.com' OR Multiple domains (comma-separated): 'example.com, test.org, mybrand.io'. Each domain must include TLD extension (.com, .net, .org, etc.). Automatically routes to exact search (1 domain) or bulk search (2+ domains). Maximum 1000 domains per request.",
            "examples": [
              "example.com",
              "example.com, test.org, mybrand.io"
            ],
            "title": "Domains",
            "type": "string"
          }
        },
        "required": [
          "domains"
        ],
        "title": "wrapperArguments",
        "type": "object"
      },
      "required": [
        "domains"
      ],
      "price_per_unit": 3,
      "schema_status": "live"
    },
    {
      "action_name": "domains_suggest",
      "description": "Generate domain name suggestions based on keywords, seed domains, or business descriptions. Returns an interactive widget with clickable domain links for clients that support HTML rendering (browsers, web-based AI assistants), with automatic fallback to formatted text for other clients. IMPORTANT: Always display the registration links from the response to the user - each domain has a direct GoDaddy registration URL that must be shown.",
      "input_schema": {
        "properties": {
          "query": {
            "description": "Search query for domain suggestions. Can be: 1) Keywords (e.g., 'tech startup', 'coffee shop') 2) Seed domain name (e.g., 'example') 3) Business description (e.g., 'AI-powered customer service chatbot'). Maximum 300 characters. Longer queries will be optimized using AI.",
            "maxLength": 300,
            "minLength": 1,
            "title": "Query",
            "type": "string"
          },
          "limit": {
            "default": 40,
            "description": "Maximum number of domain suggestions to return. Valid range: 1-100. Default: 40.",
            "maximum": 100,
            "minimum": 1,
            "title": "Limit",
            "type": "integer"
          }
        },
        "required": [
          "query"
        ],
        "title": "wrapperArguments",
        "type": "object"
      },
      "required": [
        "query"
      ],
      "price_per_unit": 3,
      "schema_status": "live"
    },
    {
      "action_name": "get_instructions",
      "description": "Get tool instructions and available actions.",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "required": [],
      "price_per_unit": 3,
      "schema_status": "live"
    }
  ],
  "schema_status": "live"
}
```

### Frequently Asked Questions

#### How do I connect this tool to an external agent?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

You can install the local MCP server by opening a terminal and running:

```
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

This will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.

Alternatively you can connect to the hosted version with this config block, no installation required:

```
{
  "mcpServers": {
    "agentpmt": {
      "type": "streamable-http",
      "url": "https://api.agentpmt.com/mcp",
      "headers": {
        "Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
        "x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
      }
    }
  }
}
```

[View MCP Connection Instructions](/docs/mcp-reference/connection) for more details.

#### How does an external agent use this tool?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:

> Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get\_instructions' so you know how to use the tool search interface. Then call action 'get\_schema' with tool\_id 6a83b46eb760bd3f1a007895 ("Available Domain Search"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it

The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.

### Dependencies

This product has no public dependency products.