sealedmail for VS Code
io.github.thesuitabs/sealedmail
Send and receive on-chain private messages via SealedMail on Sui. No browser wallet needed.
client:VS Code
transport:stdio
runtime:npm
Install sealedmail in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sealedmail-private-key",
"description": "SEALEDMAIL_PRIVATE_KEY",
"password": true
}
],
"servers": {
"sealedmail": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sealedmail-mcp"
],
"env": {
"SEALEDMAIL_PRIVATE_KEY": "${input:sealedmail-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs