Skip to content
VS Code

mcp schema designer for VS Code

io.github.vpatser1/mcp-schema-designer

Design database schemas from natural language, validate SQL, generate migrations and types

client:VS Code transport:stdio runtime:npm

Install mcp schema designer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "license-key",
      "description": "LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-schema-designer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-schema-designer"
      ],
      "env": {
        "LICENSE_KEY": "${input:license-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp schema designer in other clients