npm bookmarks-mcpstdioMITupdated 1mo ago
Your bookmarks, wherever they live, readable by your AI.
Was kannst du mit bookmarks mcp machen?
bookmarks-mcp
Your bookmarks, wherever they live, readable by your AI.
Everyone saves. Browsers, read-later apps, that Pocket export from 2023 — capture is a solved problem. Processing is not: the average bookmark is saved once and never touched again. AI assistants are the first thing that can actually process a pile like that — summarize, triage, turn it into a to-do list — but they can't see it.
This is a local, read-only MCP server that fixes the "can't see it" part.
One command in your MCP client config. Zero accounts. Nothing is ever sent to us.
Sources
| Source | How | Notes |
|---|---|---|
| Chrome, Edge, Brave, Arc, Vivaldi, Chromium | reads each profile's local Bookmarks file |
every profile auto-detected |
| Safari (macOS) | reads ~/Library/Safari/Bookmarks.plist |
includes your Reading List; no extension can do this — Safari's extension API has no bookmarks surface |
| Firefox | reads places.sqlite per profile |
needs Node ≥ 22.5 (built-in sqlite); degrades gracefully below |
| Export files | Pocket CSV, Instapaper CSV, Raindrop CSV, browser HTML, URL lists | via parse-bookmarks |
Phone bookmarks: reachable once they sync to your desktop (iCloud → Safari on Mac, Chrome sync → desktop profile). There is no way for any third-party tool to read Safari bookmarks directly on iOS.
Install
No account, no API key, no configuration — the server works the moment it's installed.
Claude Code:
claude mcp add -s user bookmarks -- npx -y bookmarks-mcp
Use -s user. The scope defaults to local, which only registers the server
for the directory you ran the command in. Your bookmarks aren't tied to one
project, so register it account-wide.
Claude Desktop / Cursor / any MCP client (mcpServers JSON):
{
"mcpServers": {
"bookmarks": {
"command": "npx",
"args": ["-y", "bookmarks-mcp"]
}
}
}
To run from source instead (for development), clone this repo next to its
dependency parse-bookmarks (the two directories must be siblings), run
npm install in bookmarks-mcp, and point your client at
node /absolute/path/to/bookmarks-mcp/src/index.js.
macOS + Safari: the app hosting the server (Claude Desktop, your terminal)
needs Full Disk Access (System Settings → Privacy & Security), because
~/Library/Safari is protected. Chromium browsers and Firefox need nothing.
Tools
| Tool | What it does |
|---|---|
list_sources |
every bookmark source found on this machine |
list_bookmarks |
list, with folder filter + pagination |
search_bookmarks |
search titles / URLs / folders / tags |
recent_bookmarks |
"what did I save this week?" |
bookmark_stats |
the state of the pile: counts, age distribution, top domains |
parse_export_file |
parse a Pocket/Instapaper/Raindrop/HTML export from disk |
export_bookmarks |
everything out as Markdown, CSV, JSON, or importable browser HTML |
fetch_page_preview |
a few-hundred-token preview of a page (title, description, headings, excerpt) instead of the raw HTML — for when title/URL alone can't be triaged |
Turn the pile into a to-do list
The reason this exists. Ask your assistant:
Look at my bookmark stats, then help me triage: which of these become deep reads, which are tools to try, which feed a project I'm working on, and which should I finally let go? Give me a checklist for this week.
Or use the built-in triage_bookmarks prompt, which walks through exactly
that — including asking you to define what your saves usually become, so
the lanes are yours, not ours.
Guarantees
- Read-only. This server never writes to a browser file. There is no delete tool. Your bookmarks cannot be harmed.
- Zero phone-home. No telemetry, no accounts, and not a single byte sent to us. The server talks to exactly two places: your local bookmark files, and — only when you ask it to preview a page — the bookmarked site itself, directly from your machine.
- Clean output. Tool results are data. No ads, no upsells, ever.
Design boundaries
These are deliberate, not gaps waiting to be filled. PRs that cross them will be declined:
- Preview-level extraction only.
fetch_page_previewanswers "is this worth my time" — it is not a reader mode and never will be a full-fidelity content extractor. - Public web pages only. No proxies, no login walls, no special-casing for X/YouTube/WeChat/etc. If a page needs auth to read, this tool isn't the way in.
- On-demand only. Nothing fetches in the background, ever. Every network call is a direct response to a tool call you made.
Roadmap
- Cloud sources behind user-supplied tokens (Raindrop, Readwise, …) — one adapter per service. PRs welcome; an adapter is a single well-defined file.
- Services that already ship their own MCP server don't need us — run both servers and your assistant sees everything. We only cover the places that have no other bridge.
Who makes this
Built by the team behind Burn 451, a read-later app. This server is deliberately neutral: it reads your bookmarks for whatever assistant and whatever workflow you choose, and it never writes to them.
License
MIT
Installation
bookmarks mcp zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add bookmarks-mcp -- npx -y bookmarks-mcpcodex mcp add bookmarks-mcp -- npx -y bookmarks-mcpamp mcp add bookmarks-mcp -- npx -y bookmarks-mcp{
"mcpServers": {
"bookmarks-mcp": {
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"bookmarks-mcp": {
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"bookmarks-mcp","command":"npx","args":["-y","bookmarks-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"bookmarks-mcp": {
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"bookmarks-mcp": {
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"bookmarks-mcp": {
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"bookmarks-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"bookmarks-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"bookmarks-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"bookmarks-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y bookmarks-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 Tools
bookmarks mcp stellt einem verbundenen Agent 8 Tools bereit.
- list_sources
- every bookmark source found on this machine
- list_bookmarks
- list, with folder filter + pagination
- search_bookmarks
- search titles / URLs / folders / tags
- recent_bookmarks
- "what did I save this week?"
- bookmark_stats
- the state of the pile: counts, age distribution, top domains
- parse_export_file
- parse a Pocket/Instapaper/Raindrop/HTML export from disk
- export_bookmarks
- everything out as Markdown, CSV, JSON, or importable browser HTML
- fetch_page_preview
- a few-hundred-token preview of a page (title, description, headings, excerpt) instead of the raw HTML — for when title/URL alone can't be triaged
Score
75 / 100
Gut
- Dokumentation25/25
- Pflege19/25
- Vertrauen13/20
- Funktionsumfang6/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 26 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 0.1.0Aktuell | 6. Aug. 2026 |