streamable-httpupdated 8d ago
A remote MCP server exposing a handful of name.ai's public, no-auth-required APIs as tools: domain search/availability, WHOIS lookup, TLD registration pricing, and TLD requirements. See src/nameaimcp/server.py for the tool definitions and src/nameaimcp/nameaiclient.py for the HTTP client that talks to name.ai.
What can you do with Name ai MCP Server?
nameai-mcp
A remote MCP server exposing a handful of name.ai's public, no-auth-required APIs as tools: domain search/availability, WHOIS lookup, TLD registration pricing, and TLD requirements. See src/nameai_mcp/server.py for the tool definitions and src/nameai_mcp/nameai_client.py for the HTTP client that talks to name.ai.
Endpoints
GET /health— health check.POST /mcp(andGET /mcpfor the SSE stream) — the MCP streamable-http endpoint. This is the URL an MCP client/host connects to.
Configuration
NAMEAI_API_BASE_URL— base URL of the name.ai API this server calls. Defaults tohttps://name.ai.HOST/PORT— bind address for the server itself. Default0.0.0.0:8000.
Local development
uv sync
uv run uvicorn nameai_mcp.app:app --reload
Docker
docker build -t nameai-mcp .
docker run -p 8000:8000 nameai-mcp
The image runs nameai-mcp (the main() entry point in
src/nameai_mcp/__init__.py), which reads
HOST/PORT from the environment — pass -e PORT=... if your platform
injects a different port.
Deploying
Any host that can run the Docker image works. To make it reachable by AI
agents as https://mcp.name.ai, DNS for name.ai is on Cloudflare — add an
A/CNAME record for the mcp subdomain pointing at wherever this
container runs, and terminate TLS there (e.g. via Coolify/Traefik if hosted
alongside the rest of nameaiv1).
Being reachable isn't the same as being discovered — nothing on
name.ai currently points at this server. For an agent (or a scanner like
ora) to find it, name.ai itself needs a pointer to it, e.g. a line in
/llms.txt or a .well-known/mcp.json manifest. That's a change in the
nameaiv1 repo, not this one.
Install
Add Name ai MCP Server to your client. Pick the one you use.
claude mcp add --transport http name-ai-mcp-server https://nameai-mcp.h.namekart.com/mcpcodex mcp add name-ai-mcp-server --url https://nameai-mcp.h.namekart.com/mcp{
"mcpServers": {
"name-ai-mcp-server": {
"url": "https://nameai-mcp.h.namekart.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"name-ai-mcp-server": {
"type": "http",
"url": "https://nameai-mcp.h.namekart.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"name-ai-mcp-server": {
"url": "https://nameai-mcp.h.namekart.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"name-ai-mcp-server": {
"serverUrl": "https://nameai-mcp.h.namekart.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 27, 2026 |