Skip to content
VS Code

Linkwarden MCP for VS Code

io.github.flumpiey/linkwarden-mcp

Read-first Linkwarden bookmarks MCP with opt-in write, delete, and collection tools.

client:VS Code transport:stdio runtime:pypi

Install Linkwarden MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "linkwarden-api-url",
      "description": "LINKWARDEN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkwarden-api-key",
      "description": "LINKWARDEN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkwarden-mcp-write-scopes",
      "description": "LINKWARDEN_MCP_WRITE_SCOPES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkwarden-mcp-delete-scopes",
      "description": "LINKWARDEN_MCP_DELETE_SCOPES",
      "password": true
    }
  ],
  "servers": {
    "linkwarden-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "linkwarden-mcp"
      ],
      "env": {
        "LINKWARDEN_API_URL": "${input:linkwarden-api-url}",
        "LINKWARDEN_API_KEY": "${input:linkwarden-api-key}",
        "LINKWARDEN_MCP_WRITE_SCOPES": "${input:linkwarden-mcp-write-scopes}",
        "LINKWARDEN_MCP_DELETE_SCOPES": "${input:linkwarden-mcp-delete-scopes}"
      }
    }
  }
}

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

Linkwarden MCP in other clients