Skip to content
VS Code

Linkonda for VS Code

com.linkonda/mcp

Create and manage Linkonda short links and QR codes, with no per-visitor tracking.

client:VS Code transport:stdio runtime:npm

Install Linkonda in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "linkonda-api-key",
      "description": "LINKONDA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkonda-api-base-url",
      "description": "LINKONDA_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@veranoapp/linkonda-mcp"
      ],
      "env": {
        "LINKONDA_API_KEY": "${input:linkonda-api-key}",
        "LINKONDA_API_BASE_URL": "${input:linkonda-api-base-url}"
      }
    }
  }
}

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

Linkonda in other clients