📦
Linkding MCP Server
Unofficial linkding MCP server
0 installs
Trust: 34 — Low
Devtools
Ask AI about Linkding MCP Server
Powered by Claude · Grounded in docs
I know everything about Linkding MCP Server. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
(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"
}
}
}
