Local YDB MCP for VS Code
io.github.astandrik/local-ydb-mcp
Operate local-ydb deployments through local or SSH-backed MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install Local YDB MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "local-ydb-toolkit-config",
"description": "LOCAL_YDB_TOOLKIT_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "local-ydb-mcp-content-format",
"description": "LOCAL_YDB_MCP_CONTENT_FORMAT",
"password": true
}
],
"servers": {
"local-ydb-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@astandrik/local-ydb-mcp"
],
"env": {
"LOCAL_YDB_TOOLKIT_CONFIG": "${input:local-ydb-toolkit-config}",
"LOCAL_YDB_MCP_CONTENT_FORMAT": "${input:local-ydb-mcp-content-format}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs