smbCloud Mail & Auth for VS Code
io.github.smbcloudxyz/smbcloud-cli
Email infrastructure and authentication for developers: domains, inbox routes, auth apps, deploys.
client:VS Code
transport:stdio
runtime:npm
Install smbCloud Mail & Auth in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "smb-mail-api-key",
"description": "SMB_MAIL_API_KEY",
"password": true
}
],
"servers": {
"smbcloud-cli": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@smbcloud/cli"
],
"env": {
"SMB_MAIL_API_KEY": "${input:smb-mail-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs