(Unofficial) linkding-mcp-server

by uta8a

156 downloads
Not rated
GitHub

About

(Unofficial) linkding-mcp-server is an MCP server for linkding, a self-hostable bookmark manager.

Details

Author
uta8a
Downloads
156
Categories
Other

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name (Unofficial) linkding-mcp-server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Compile with deno task compile to produce a binary at ./dist/main. Configure the MCP client with the binary path and environment variables LINKDING_URL and LINKDING_API_KEY. Alternatively, use the jsr package @uta8a/linkding-mcp-server with Deno.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "(unofficial) linkding-mcp-server": {
            "linkding-mcp-server": {
                "command": "deno",
                "args": [
                    "task",
                    "compile"
                ]
            }
        }
    }
}

McpServers

{
    "linkding-mcp-server": {
        "command": "deno",
        "args": [
            "task",
            "compile"
        ]
    }
}

(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"
    }
  }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.