Skip to content
VS Code

importly mcp for VS Code

io.importly/importly-mcp

Download, transcribe, and get metadata for any video/audio URL. Managed yt-dlp + speech-to-text.

client:VS Code transport:stdio runtime:npm

Install importly mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "importly-api-key",
      "description": "IMPORTLY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "importly-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "importly-mcp"
      ],
      "env": {
        "IMPORTLY_API_KEY": "${input:importly-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

importly mcp in other clients