Skip to content
VS Code

migratorxpress mcp for VS Code

io.github.arpe-io/migratorxpress-mcp

MCP server for MigratorXpress — cross-platform database migration with parallel transfer

client:VS Code transport:stdio runtime:pypi

Install migratorxpress mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "migratorxpress-path",
      "description": "MIGRATORXPRESS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "migratorxpress-timeout",
      "description": "MIGRATORXPRESS_TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "migratorxpress-log-dir",
      "description": "MIGRATORXPRESS_LOG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "migratorxpress-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "migratorxpress-mcp"
      ],
      "env": {
        "MIGRATORXPRESS_PATH": "${input:migratorxpress-path}",
        "MIGRATORXPRESS_TIMEOUT": "${input:migratorxpress-timeout}",
        "MIGRATORXPRESS_LOG_DIR": "${input:migratorxpress-log-dir}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

migratorxpress mcp in other clients