dynadot for VS Code
io.github.mikusnuz/dynadot
MCP server for Dynadot domain registrar — domain search, registration, DNS, and transfers
client:VS Code
transport:stdio
runtime:npm
Install dynadot in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dynadot-api-key",
"description": "DYNADOT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "dynadot-sandbox",
"description": "DYNADOT_SANDBOX",
"password": true
}
],
"servers": {
"dynadot": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"dynadot-mcp"
],
"env": {
"DYNADOT_API_KEY": "${input:dynadot-api-key}",
"DYNADOT_SANDBOX": "${input:dynadot-sandbox}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs