Skip to content
VS Code

fasttransfer mcp for VS Code

io.github.arpe-io/fasttransfer-mcp

MCP server for FastTransfer — high-performance parallel data transfer between databases

client:VS Code transport:stdio runtime:pypi

Install fasttransfer mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fasttransfer-path",
      "description": "FASTTRANSFER_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fasttransfer-timeout",
      "description": "FASTTRANSFER_TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fasttransfer-log-dir",
      "description": "FASTTRANSFER_LOG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "fasttransfer-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fasttransfer-mcp"
      ],
      "env": {
        "FASTTRANSFER_PATH": "${input:fasttransfer-path}",
        "FASTTRANSFER_TIMEOUT": "${input:fasttransfer-timeout}",
        "FASTTRANSFER_LOG_DIR": "${input:fasttransfer-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

fasttransfer mcp in other clients