SMSPM MCP Server for VS Code
io.github.alesav/smspm
Send SMS via the SMSPM API from any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install SMSPM MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "smspm-hash",
"description": "SMSPM_HASH",
"password": true
},
{
"type": "promptString",
"id": "smspm-token",
"description": "SMSPM_TOKEN",
"password": true
}
],
"servers": {
"smspm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"smspm-mcp"
],
"env": {
"SMSPM_HASH": "${input:smspm-hash}",
"SMSPM_TOKEN": "${input:smspm-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs