Skip to content
VS Code

MigraFlow - Database Migration AI for VS Code

io.github.wmeireles/migraflow-mcp

AI-powered database migration. Analyze schemas, generate SQL, calculate risks.

client:VS Code transport:stdio runtime:pypi

Install MigraFlow - Database Migration AI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "migraflow-api-key",
      "description": "MIGRAFLOW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "migraflow-api-url",
      "description": "MIGRAFLOW_API_URL",
      "password": true
    }
  ],
  "servers": {
    "migraflow-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "migraflow-mcp"
      ],
      "env": {
        "MIGRAFLOW_API_KEY": "${input:migraflow-api-key}",
        "MIGRAFLOW_API_URL": "${input:migraflow-api-url}"
      }
    }
  }
}

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

MigraFlow - Database Migration AI in other clients