telnyx for VS Code
io.github.team-telnyx/telnyx
Official TypeScript library for the Telnyx API
client:VS Code
transport:stdio
runtime:npm
Install telnyx in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "telnyx-api-key",
"description": "TELNYX_API_KEY",
"password": true
}
],
"servers": {
"telnyx": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"telnyx"
],
"env": {
"TELNYX_API_KEY": "${input:telnyx-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