SchemaBrain for VS Code
io.github.arun-kc/schemabrain
The trust and intelligence layer between AI agents and your database.
client:VS Code
transport:stdio
runtime:pypi
Install SchemaBrain in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "database-url",
"description": "DATABASE_URL",
"password": true
}
],
"servers": {
"schemabrain": {
"type": "stdio",
"command": "uvx",
"args": [
"schemabrain"
],
"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