mcp for VS Code
app.vayapin/mcp
VayaPin MCP: pin resolution + Google Maps geocoding/places + AfterShip tracking, with BYOK.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vayapin-pat",
"description": "VAYAPIN_PAT",
"password": true
},
{
"type": "promptString",
"id": "vayapin-mcp-slice",
"description": "VAYAPIN_MCP_SLICE",
"password": true
},
{
"type": "promptString",
"id": "vayapin-mcp-api-url",
"description": "VAYAPIN_MCP_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@vayacore/mcp"
],
"env": {
"VAYAPIN_PAT": "${input:vayapin-pat}",
"VAYAPIN_MCP_SLICE": "${input:vayapin-mcp-slice}",
"VAYAPIN_MCP_API_URL": "${input:vayapin-mcp-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs