Harshalkatakiya/name-mcp
If you are the rightful owner of name-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
name-mcp is a Model Context Protocol (MCP) server implemented in TypeScript, interfacing with name.com's Domain Availability API to check domain availability and pricing.
check-multiple-domains-availability
Check the availability of multiple domains up to 50 at once, providing purchase and renewal prices for each available domain.
Name.com MCP Server
name-mcp is a Model Context Protocol (MCP) server implemented in TypeScript. It interfaces with name.com's Domain Availability API, allowing AI agents and applications to check the availability of multiple domain names with price through standardized tools.
Table of Contents
Overview
This project utilizes the @modelcontextprotocol/sdk to create an MCP-compliant server. MCP is an open standard that enables seamless integration between AI models and external tools or data sources.(1)
By exposing name.com's domain availability checks as MCP tools, this server allows AI agents to programmatically verify domain availability.
Features
- Check the availability of multiple domains upto 50 at once.
- Gives purchase prices and renewal prices for each domain which are available for purchase.
- Implements MCP tools for integration with AI agents.
Components
Tools
- check-multiple-domains-availability
- Check the availability of multiple domains upto 50 at once.
- Input:
domainNames
(string[]): domains in string of array to check availability for - Gives purchase prices and renewal prices for each domain which are available for purchase.
- Uses name.com's Domain Availability API.
Environment Variables
Signup in Name.com as Reseller and Go to Reseller Dashboard of Name.com to get your API credentials.
Note: Add your current IP address to the list of allowed IP addresses unless this will give the error
Your Current IP address is not added to the list of allowed IP addresses
.
Add below environment variables to your mcpserver's configuration:
- NAME_API_BASE_URL: Base URL for Name.com's API.
https://api.dev.name.com
orhttps://api.name.com
. - NAME_USERNAME: Your Username for API.
- NAME_API_TOKEN: Your API Token.
MCP Configuration
This MCP Server can be used with any MCP client like VS Code, Cursor, Trae, Claude Desktop, Windsurf IDE, etc.
To integrate this server with an MCP client, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open User Settings (JSON)
:
{
"mcpServers": {
"Name": {
"command": "npx",
"args": ["-y", "Name-mcp"],
"env": {
"NAME_API_BASE_URL": "<Name-api-base-url>",
"NAME_USERNAME": "<Name-api-key>",
"NAME_API_TOKEN": "<Name-api-secret>"
}
}
}
}
License
This project is licensed under the .
Author
Harshal Katakiya
- GitHub: @Harshalkatakiya
- Email:
- LinkedIn: @harshal-katakiya
- NPM: @harshalkatakiya