Skip to main content
Glama
crunchypancake1

Linkwarden MCP

Linkwarden MCP

An MCP server that exposes a Linkwarden bookmark collection as a tool set, running as a stateful agent on Cloudflare Workers. Point an MCP client (Claude, etc.) at the deployed endpoint and it can browse, search, filter, create, and archive links directly against your own Linkwarden instance.

How it works

Every tool call goes straight to the Linkwarden REST API on your live instance — there's no index, cache, or background sync involved.

MCP client ──HTTP/SSE──► Worker (/mcp) ──► LinkwardenMCP (Durable Object)
                                                  │
                                    LINKWARDEN_URL + LINKWARDEN_TOKEN → Linkwarden API

LinkwardenMCP is a McpAgent hosted on a Durable Object.

Related MCP server: OpenViking MCP Server

Tools

Tool

Description

list_links

List links, optionally filtered to specific collections

search_links

Full-text search and filter by collection/tag

get_link

Fetch a single link by ID

create_link

Save a new bookmark

archive_link

Trigger or refresh a link's archive snapshot

list_collections

List all Linkwarden collections

list_tags

List all tags

Setup

npm install
wrangler secret put LINKWARDEN_URL     # base URL of your Linkwarden instance

LINKWARDEN_TOKEN (a Linkwarden API access token) is read from Cloudflare's Secrets Store, not a plain Wrangler secret. Create it once per account and it's reusable across Workers:

wrangler secrets-store secret create <store-id> \
  --name linkwarden-token --scopes workers --remote

wrangler.jsonc then binds it via secrets_store_secrets:

"secrets_store_secrets": [
  { "binding": "LINKWARDEN_TOKEN", "store_id": "<store-id>", "secret_name": "linkwarden-token" }
]

For local dev, create a local-only secret with the same name (omit --remote) so wrangler dev has something to read.

See CLAUDE.md for the full architecture and binding reference.

Development

npm run dev         # wrangler dev — local development with hot reload
npm run test        # vitest run
npm run typecheck   # tsc --noEmit

Deploy

Cloudflare Workers Builds is connected to this repo — pushing to master deploys automatically (npm run build then wrangler deploy). npm run deploy remains available for manual/ad-hoc deploys. Either way, the linkwarden-token secret must exist in the account's Secrets Store — it is never stored in the repo.

Stack

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only

  • Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/crunchypancake1/linkwarden-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server