magpipe for VS Code
io.github.elagerway/magpipe
Manage AI voice agents, calls, SMS, contacts, and phone numbers via Magpipe.
client:VS Code
transport:stdio
runtime:npm
Install magpipe in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "magpipe-api-key",
"description": "MAGPIPE_API_KEY",
"password": true
}
],
"servers": {
"magpipe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"magpipe-mcp-server"
],
"env": {
"MAGPIPE_API_KEY": "${input:magpipe-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