mcp for VS Code
org.giftcardshop/mcp
Browse the giftcardshop catalog and buy gift cards with Lightning over MCP. No account, no signup.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gcs-internal-secret",
"description": "GCS_INTERNAL_SECRET",
"password": true
},
{
"type": "promptString",
"id": "gcs-api-base",
"description": "GCS_API_BASE",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@giftcardshop/mcp"
],
"env": {
"GCS_INTERNAL_SECRET": "${input:gcs-internal-secret}",
"GCS_API_BASE": "${input:gcs-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs