Skip to content
VS Code

media mcp for VS Code

io.github.avclabs/media-mcp

MCP Server for video enhancement and image segmentation (SAM3)

client:VS Code transport:stdio runtime:npm

Install media mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "api-key",
      "description": "API_KEY",
      "password": true
    }
  ],
  "servers": {
    "media-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@avclabs.ai/media-mcp"
      ],
      "env": {
        "API_KEY": "${input:api-key}"
      }
    }
  }
}

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

media mcp in other clients