Name.com MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
cd /path/to/namecom-mcp
npm install
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "NAMECOM_USERNAME=${NAMECOM_USERNAME}" -e "NAMECOM_TOKEN=${NAMECOM_TOKEN}" namecom-mcp -- node "<FULL_PATH_TO_NAMECOM_MCP>/dist/index.js"

Replace <FULL_PATH_TO_NAMECOM_MCP>/dist/index.js with the actual folder you prepared in step 1.

Required:NAMECOM_USERNAMENAMECOM_TOKEN
README.md

Manage domains and DNS records through the Name.com REST API

namecom-mcp

MCP server for the name.com REST API v4. Provides 8 tools for domain search, availability checking, DNS record management, and nameserver configuration.

Tools

Tool Description
namecom_search Search for available domains by keyword, optionally filtered by TLD
namecom_check_availability Bulk-check up to 50 specific domain names
namecom_list_domains List all domains in your account
namecom_get_domain Get full details for a specific domain
namecom_list_records List DNS records for a domain
namecom_create_record Create a DNS record (A, AAAA, CNAME, MX, TXT, NS, SRV)
namecom_delete_record Delete a DNS record by ID
namecom_set_nameservers Set custom nameservers for a domain

Setup

1. Get API credentials

  1. Log into name.com
  2. Go to Account > API Settings (or https://www.name.com/account/settings/api)
  3. Generate a new API token
  4. Note your username and the generated token

2. Install

cd /path/to/namecom-mcp
npm install

3. Add to Claude Code

Add the following to your Claude Code MCP configuration file (~/.claude/claude_desktop_config.json or the Claude Code settings):

{
  "mcpServers": {
    "namecom": {
      "command": "node",
      "args": ["/absolute/path/to/namecom-mcp/src/index.js"],
      "env": {
        "NAMECOM_USERNAME": "your-namecom-username",
        "NAMECOM_TOKEN": "your-api-token"
      }
    }
  }
}

Replace /absolute/path/to/namecom-mcp with the actual path where you cloned/installed this server.

On Windows with WSL or Git Bash you may need to adjust the path format.

4. Restart Claude Code

After saving the config, restart Claude Code. You should see the namecom tools available.

Rate Limits

name.com enforces: 20 requests/second, 3000 requests/hour. The server does not implement client-side rate limiting — avoid bulk operations in tight loops.

Environment Variables

Variable Required Description
NAMECOM_USERNAME Yes Your name.com account username
NAMECOM_TOKEN Yes Your name.com API token

The server will exit with an error message if either variable is missing.

Example Usage (in Claude)

Search for available domains for a baby product startup:
  namecom_search keyword="babyzen" tldFilter=["com","io","co"]

Check if specific domains are available:
  namecom_check_availability domainNames=["babyzen.com","babyzen.io","babyzen.co"]

List all my domains:
  namecom_list_domains

Add a CNAME record pointing www to Vercel:
  namecom_create_record domainName="example.com" host="www" type="CNAME" answer="cname.vercel-dns.com"

Point a domain to Cloudflare nameservers:
  namecom_set_nameservers domainName="example.com" nameservers=["ns1.cloudflare.com","ns2.cloudflare.com"]

API Reference

Tools (8)

namecom_searchSearch for available domains by keyword, optionally filtered by TLD
namecom_check_availabilityBulk-check up to 50 specific domain names
namecom_list_domainsList all domains in your account
namecom_get_domainGet full details for a specific domain
namecom_list_recordsList DNS records for a domain
namecom_create_recordCreate a DNS record (A, AAAA, CNAME, MX, TXT, NS, SRV)
namecom_delete_recordDelete a DNS record by ID
namecom_set_nameserversSet custom nameservers for a domain

Environment Variables

NAMECOM_USERNAMErequiredYour name.com account username
NAMECOM_TOKENrequiredYour name.com API token

Configuration

claude_desktop_config.json
{"mcpServers": {"namecom": {"command": "node", "args": ["/absolute/path/to/namecom-mcp/src/index.js"], "env": {"NAMECOM_USERNAME": "your-namecom-username", "NAMECOM_TOKEN": "your-api-token"}}}}

Try it

Search for available domains related to 'my-new-startup' with .com or .io extensions.
Check if the following domains are available: example.com, example.net, and example.org.
List all the DNS records for my domain example.com.
Create a new CNAME record for 'blog.example.com' pointing to 'gh-pages.github.io'.
Update the nameservers for example.com to use Cloudflare's nameservers.

Frequently Asked Questions

What are the key features of Name.com MCP Server?

Search for domain availability with TLD filtering. Bulk availability checking for up to 50 domains. Comprehensive DNS record management (A, CNAME, MX, etc.). Account-wide domain listing and detail retrieval. Custom nameserver configuration.

What can I use Name.com MCP Server for?

Automating domain availability research for new projects. Managing DNS records for multiple domains without leaving the IDE. Quickly updating nameservers during infrastructure migrations. Auditing existing domain portfolios and their current DNS configurations.

How do I install Name.com MCP Server?

Install Name.com MCP Server by running: cd /path/to/namecom-mcp && npm install

What MCP clients work with Name.com MCP Server?

Name.com MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Name.com MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare