New:Socket for Asana Is Now Available.Learn more
Get Started

@namemyapp/mcp

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@namemyapp/mcp

Model Context Protocol server for namemy.app — let AI agents check live domain availability and hand users a one-click buy URL. Public mode works with no API key; authed mode unlocks all 12 tools.

Source
npmnpm
Version
1.1.1
Version published
Weekly downloads
77
-30.63%
Maintainers
1
Weekly downloads
 
Created
Source

@namemyapp/mcp

Model Context Protocol (MCP) server for namemy.app — gives Claude Desktop, Claude Code, Cursor, Windsurf, Continue.dev, and any MCP-aware client live domain availability and one-click buy URLs.

npx -y @namemyapp/mcp

npm license

What it does

Your AI agent can already suggest names. This server lets it:

  • Check domain availability across registrars with unified retail pricing
  • Hand the user a one-click buy URL that drops them into namemy.app's checkout — sign-up + payment in one flow, your agent never touches a card
  • Generate brandable names with availability fused in (authed mode)
  • Buy domains server-to-server (authed mode)
  • Set DNS records, generate logos, legal docs, brand kits, social kits (authed mode)

Install — Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "namemyapp": {
      "command": "npx",
      "args": ["-y", "@namemyapp/mcp"],
      "env": { "NAMEMYAPP_AGENT_SOURCE": "claude-desktop" }
    }
  }
}

Restart Claude Desktop. Ask: "is codeflow.ai available?"

Install — Claude Code

/plugin install namemyapp

The bundled plugin ships a SKILL that triggers on naming/domain prompts plus three slash commands (/check-domain, /name-app, /buy-domain). Or wire just the MCP server in ~/.claude.json with the same JSON snippet as Claude Desktop.

Install — Cursor / Windsurf / Continue.dev

Same JSON shape:

{
  "mcpServers": {
    "namemyapp": {
      "command": "npx",
      "args": ["-y", "@namemyapp/mcp"],
      "env": { "NAMEMYAPP_AGENT_SOURCE": "cursor" }
    }
  }
}
  • Cursor: ~/.cursor/mcp.json (or workspace .cursor/mcp.json)
  • Windsurf: ~/.codeium/windsurf/mcp_config.json
  • Continue.dev: ~/.continue/config.json under experimental.modelContextProtocolServers

Full install matrix: https://namemy.app/agents/install.

Two modes

ModeTriggerTools exposed
publicno NAMEMYAPP_API_KEYbuy_link (URL builder, no network call)
authedNAMEMYAPP_API_KEY=nma_live_...All 12 tools wrapping /api/v1/*

Public mode is the zero-friction path — npx -y @namemyapp/mcp works without any signup. Get a free key at https://namemy.app/app/api-keys for the full surface.

Tools

Build a one-click purchase URL.

{ domain: "codeflow.ai", priceUsd?: 13.20 }
// → { domain, buyUrl, source }

check_domain — authed

Live single-domain availability + price.

{ domain: "codeflow.ai" }
// → { domain, available, bestPrice, comparison, buyUrl }

generate_names — authed

AI brand name generation with availability fused in.

{ description: "AI task manager", tlds?, count?, industry? }
// → { meta, results: [{ name, tldOptions: [{ domain, available, price, buyUrl }] }] }

Other authed tools

buy_domain (server-to-server), list_domains, set_dns_record, brand_conflict_check, generate_logo, generate_legal_docs, generate_brand_kit, generate_social_kit.

Environment variables

VarDefaultPurpose
NAMEMYAPP_API_KEYBearer token for authed mode
NAMEMYAPP_API_URLhttps://namemy.appOverride for staging / self-hosted
NAMEMYAPP_AGENT_SOURCEmcpAttribution tag stamped on every API call + buyUrl

Attribution

Every API call sends X-Agent-Source header and ?source= query param. namemy.app records this on every Purchase row and pushes attribution events to PostHog so we can credit the agent that drove the conversion.

Transport

Stdio. Streamable HTTP transport (web-friendly clients) is on the roadmap.

Source + license

MIT. Source at https://github.com/Rakesh1002/namemyapp/tree/main/packages/mcp.

Keywords

mcp

FAQs

Package last updated on 25 Apr 2026

Related posts