Skip to content
VS Code

namecheap api mcp for VS Code

io.github.lanternrow/namecheap-api-mcp

Namecheap API — domains, DNS, contacts, registrar lock, SSL listing, and pricing.

client:VS Code transport:stdio runtime:npm

Install namecheap api mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "namecheap-api-user",
      "description": "NAMECHEAP_API_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "namecheap-api-key",
      "description": "NAMECHEAP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "namecheap-client-ip",
      "description": "NAMECHEAP_CLIENT_IP",
      "password": true
    },
    {
      "type": "promptString",
      "id": "namecheap-username",
      "description": "NAMECHEAP_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "namecheap-environment",
      "description": "NAMECHEAP_ENVIRONMENT",
      "password": true
    }
  ],
  "servers": {
    "namecheap-api-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "namecheap-api-mcp"
      ],
      "env": {
        "NAMECHEAP_API_USER": "${input:namecheap-api-user}",
        "NAMECHEAP_API_KEY": "${input:namecheap-api-key}",
        "NAMECHEAP_CLIENT_IP": "${input:namecheap-client-ip}",
        "NAMECHEAP_USERNAME": "${input:namecheap-username}",
        "NAMECHEAP_ENVIRONMENT": "${input:namecheap-environment}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

namecheap api mcp in other clients