kindlesms for VS Code
io.github.lexerann/kindlesms
Send SMS, manage approved sender IDs, and check credits via KindleSMS.
client:VS Code
transport:stdio
runtime:npm
Install kindlesms in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "user-token",
"description": "USER_TOKEN",
"password": true
}
],
"servers": {
"kindlesms": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"kindlesms"
],
"env": {
"USER_TOKEN": "${input:user-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs