joltsms sms for VS Code
io.github.rchanllc/joltsms-sms
Provision real-SIM US phone numbers, receive SMS, and extract OTP codes for AI agents.
client:VS Code
transport:stdio
runtime:npm
Install joltsms sms in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "joltsms-api-key",
"description": "JOLTSMS_API_KEY",
"password": true
}
],
"servers": {
"joltsms-sms": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@joltsms/mcp-server"
],
"env": {
"JOLTSMS_API_KEY": "${input:joltsms-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