MCP server for Linkwarden, the self-hosted bookmark manager with page preservation
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A Model Context Protocol (MCP) server for Linkwarden, the self-hosted bookmark manager that keeps a permanent copy of every page it saves.
Lets MCP clients like Claude Code, Claude Desktop or Codex search a bookmark collection, organise it into collections and tags, and read the preserved article text of a saved page, so a link that has been archived can be summarised or quoted without fetching the live site again.
Twenty-eight tools is the ceiling, not the floor: LINKWARDEN_ALLOW_TOOLS=essential
registers a curated eight instead, and a model picks the right tool far more reliably
from eight than from twenty-eight β see
choosing which tools load.

Note: Linkwarden's published API reference is incomplete. This server was written against the routes in
apps/web/pages/api/v1/**and the request schemas inpackages/lib/schemaValidation.tsof linkwarden/linkwarden, verified against v2.16.0 on 2026-08-17. Those two files are the source of truth for every tool here.
Reads what Linkwarden preserved. Linkwarden keeps a permanent copy of every
page it saves. get_link_content serves that article text, so a saved link can be
summarised or quoted without fetching the live site again β and long articles are
sliced, not dumped.
Organises without clobbering. Linkwarden's update routes replace whole records. This server reads the current state and merges, so changing a title never silently strips a link's tags or a collection's collaborators.
Output is an allowlist. Linkwarden returns whole Prisma rows; every field in a result here is named explicitly. Article text stays out of list results, collection members' names and e-mail addresses are dropped, and a column added by a future release cannot land in the model's context unannounced.
Linkwarden has no per-token scopes: a token carries the full permissions of the account that created it. Create a dedicated account with access only to the collections this server should see rather than handing it an admin token.
| Variable | Required | Description |
|---|---|---|
LINKWARDEN_URL | yes | Base URL, e.g. https://links.example.net (without /api/v1) |
LINKWARDEN_TOKEN | yes | Access token from Settings β Access Tokens |
LINKWARDEN_READ_ONLY | no | true registers only the read tools |
LINKWARDEN_ALLOW_TOOLS | no | Comma-separated tool names, list_* prefixes, or essential for a curated preset |
LINKWARDEN_DENY_TOOLS | no | Same syntax; removed from whatever LINKWARDEN_ALLOW_TOOLS left |
ELICITATION | no | false replaces the approval dialog with the two-call token. Not prefixed |
LINKWARDEN_INSECURE_TLS | no | true accepts self-signed certificates (scoped to this connection) |
Use
https://. Over plain http the token travels unencrypted; the server prints a warning unless the host is local. For a self-signed certificate prefer a proper internal CA overLINKWARDEN_INSECURE_TLS.
The token is removed from the process environment once it has been read, so it is not
visible to child processes or in /proc/<pid>/environ.
Without credentials the server still starts and lists its tools, so registries and inspectors can introspect it; every call then fails with setup instructions instead of reaching the API.
LINKWARDEN_ALLOW_TOOLS and LINKWARDEN_DENY_TOOLS take comma-separated tool names;
a trailing * matches a whole family. essential is a curated preset of eight β
save, find and read β marked as such in the
tool reference.
An entry that matches no tool aborts startup and names it, so a typo cannot silently
hide a tool β an absent tool is not something anyone traces back to an environment
variable. A filtered tool is never registered, so it is absent from tools/list and
unknown to tools/call alike, exactly like a write tool under LINKWARDEN_READ_ONLY.
If you run several of these servers at once, mcp-hub is the
other answer β its /hub endpoint replaces every server's tools with six meta-tools.
A client that cannot spawn a local process β ChatGPT connectors, Claude on the web,
Cursor, LibreChat β reaches linkwarden-mcp through mcp-hub: one
container serves many stdio MCP servers over Streamable HTTP, with an OAuth 2.1 login
behind a single password and long-lived tokens for the clients that cannot do OAuth. Its
/hub endpoint puts every server behind six meta-tools, so one connector reaches all of
them without NΓtool schemas in the model's context, and it speaks both protocol revisions
β a question this server asks travels through it to the person at the far end.
Its /config/mcp.json uses Claude Code's format, so the entry is the one you already
have:
allowTools and denyTools there are the hub's own per-server filter, which is not
the same thing as *_ALLOW_TOOLS in env β the difference, and the mistake it invites,
are in the client guide.
Every tool declares an outputSchema and answers with structuredContent
alongside the text block, so a client can use the result without parsing prose.
Seven tools that answered with a sentence β "Link 42 deleted." β now answer
with the fields as well, and the sentence stays in the text block.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/linkwarden)<a href="https://allmcps.com/mcp/linkwarden"><img src="https://allmcps.com/api/badge/linkwarden?style=directory" alt="Linkwarden on AllMCPs" /></a>