mcp server for VS Code
io.github.upstash/mcp-server
Manage Upstash databases and resources through the Upstash Developer API.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "upstash-email",
"description": "UPSTASH_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "upstash-api-key",
"description": "UPSTASH_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "upstash-box-api-key",
"description": "UPSTASH_BOX_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/mcp-server"
],
"env": {
"UPSTASH_EMAIL": "${input:upstash-email}",
"UPSTASH_API_KEY": "${input:upstash-api-key}",
"UPSTASH_BOX_API_KEY": "${input:upstash-box-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