mcp server for VS Code
io.github.sv-number/mcp-server
Phone numbers for AI agents: order a private number, read the SMS verification code, hand it back.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "svn-api-key",
"description": "SVN_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sv-number-mcp"
],
"env": {
"SVN_API_KEY": "${input:svn-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