linkding-mcp-server

linkding-mcp-server

2

The linkding-mcp-server is an unofficial MCP server for linkding, a self-hostable bookmark manager. It allows integration by configuring the server with a URL and API key, and it supports setup via Deno or a specific jsr package.

(Unofficial) linkding-mcp-server

MCP server for linkding, a self-hostable bookmark manager

setup

deno task compile

A compiled binary will be generated at ./dist/main.

When configuring the MCP server, use the following:

"mcpServers": {
  "linkding-mcp-tools": {
    "command": "/path/to/linkding-mcp-server/dist/main",
    "env": {
      "LINKDING_URL": "https://your-linkding.example.com",
      "LINKDING_API_KEY": "xxx"
    }
  }
}

LINKDING_API_KEY is the API key found in the REST API section at /settings/integrations.

or you can use jsr package @uta8a/linkding-mcp-server.

"mcpServers": {
  "linkding-mcp-tools": {
    "command": "/path/to/deno",
    "args": [
      "run",
      "-Ar",
      "jsr:@uta8a/linkding-mcp-server/server"
    ],
    "env": {
      "LINKDING_URL": "https://your-linkding.example.com",
      "LINKDING_API_KEY": "xxx"
    }
  }
}