linkding-mcp-server logo

linkding-mcp-server

by uta8a

This is an unofficial MCP server for linkding, a self-hostable bookmark manager. It allows you to extend linkding's functionality using MCP (Managed Configuration Protocol).

View on GitHub

Last updated: N/A

(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"
    }
  }
}