Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Name.com MCP Serversearch for available .com domains for my new coffee shop"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| Search for available domains by keyword, optionally filtered by TLD |
| Bulk-check up to 50 specific domain names |
| List all domains in your account |
| Get full details for a specific domain |
| List DNS records for a domain |
| Create a DNS record (A, AAAA, CNAME, MX, TXT, NS, SRV) |
| Delete a DNS record by ID |
| Set custom nameservers for a domain |
Setup
1. Get API credentials
Log into name.com
Go to Account > API Settings (or https://www.name.com/account/settings/api)
Generate a new API token
Note your username and the generated token
2. Install
cd /path/to/namecom-mcp
npm install3. 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 |
| Yes | Your name.com account username |
| 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
Base URL:
https://api.name.comAuth: HTTP Basic (username:token)
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.