Skip to content
VS Code

masv for VS Code

io.github.getmasv/masv

Provides tools to use MASV API. MASV is reliable and secure large file transfer service.

client:VS Code transport:stdio runtime:npm

Install masv in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "masv-team-id",
      "description": "MASV_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "masv-api-key",
      "description": "MASV_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "masv-allow-delete",
      "description": "MASV_ALLOW_DELETE",
      "password": true
    }
  ],
  "servers": {
    "masv": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getmasv/masv-mcp-server"
      ],
      "env": {
        "MASV_TEAM_ID": "${input:masv-team-id}",
        "MASV_API_KEY": "${input:masv-api-key}",
        "MASV_ALLOW_DELETE": "${input:masv-allow-delete}"
      }
    }
  }
}

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

masv in other clients