Name.com MCP Server

Name.com MCP Server

Enables management of domains and DNS records through the Name.com REST API. Users can search for available domains, check bulk availability, and configure DNS records or nameservers using natural language.

Category
Visit Server

README

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured