SQL Benchmarks Lab for VS Code
io.github.rctruta/sqlbenchdag
Query pre-computed SQL engine benchmarks. Runs standalone, no server setup required.
client:VS Code
transport:stdio
runtime:pypi
Install SQL Benchmarks Lab in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sb-results-dir",
"description": "SB_RESULTS_DIR",
"password": true
},
{
"type": "promptString",
"id": "sb-api-base",
"description": "SB_API_BASE",
"password": true
}
],
"servers": {
"sqlbenchdag": {
"type": "stdio",
"command": "uvx",
"args": [
"sqlbenchdag"
],
"env": {
"SB_RESULTS_DIR": "${input:sb-results-dir}",
"SB_API_BASE": "${input:sb-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