DB Connect MCP for VS Code
io.github.yugui923/db-connect-mcp
Multi-database MCP server for PostgreSQL, MySQL, and ClickHouse
client:VS Code
transport:stdio
runtime:pypi
Install DB Connect MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "database-url",
"description": "DATABASE_URL",
"password": true
}
],
"servers": {
"db-connect-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"db-connect-mcp"
],
"env": {
"DATABASE_URL": "${input:database-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs