Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.Fisher521/bookmarks-mcp

NPM · BOOKMARKS-MCP · SCANNED AUG 7

Read-only MCP server for browser bookmarks: Chrome, Safari, Firefox, and read-later exports.

Available components

65 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 96 of 100 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 96 of 100 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability82
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 733 tokens (~91/item across 8 items; 8 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage84
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 53% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · bookmarks-mcp

# add to Claude Code
claude mcp add fisher521-bookmarks-mcp -- npx -y bookmarks-mcp
# add to Codex CLI
codex mcp add fisher521-bookmarks-mcp -- npx -y bookmarks-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "fisher521-bookmarks-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "bookmarks-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add fisher521-bookmarks-mcp --command npx --arg -y --arg bookmarks-mcp
# ~/.hermes/config.yaml
mcp_servers:
  fisher521-bookmarks-mcp:
    command: "npx"
    args: ["-y", "bookmarks-mcp"]
// mcp.json
{
  "mcpServers": {
    "fisher521-bookmarks-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bookmarks-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 6 Aug 26 65

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 7 Aug 2026 · Analysed npm/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Deprecated 95
Stale 29
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools · 8 exposed · ~733 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
bookmark_stats ~91

The state of the pile: total count, per-source counts, age distribution (how much has sat untouched for years), and top domains. A good first call before triaging.

NameTypeReqDescription
sourcestringFilter by browser ("chrome", "safari", "firefox", "edge", "brave", "arc", "vivaldi") or a source id from list_sources. Omit for all.

No output schema declared.

No examples provided.

export_bookmarks ~97

Export bookmarks from detected browsers as markdown, csv, json, or importable browser HTML (Netscape format). Returns the file content; save it wherever you like.

NameTypeReqDescription
formatstringyes
sourcestringFilter by browser ("chrome", "safari", "firefox", "edge", "brave", "arc", "vivaldi") or a source id from list_sources. Omit for all.

No output schema declared.

No examples provided.

fetch_page_preview ~134

Fetch a bookmarked URL and return a short, structured preview (title, description, headings, an opening excerpt, word count) instead of the raw page — a few hundred tokens instead of tens of thousands. Use this only when a title/URL alone isn't enough to triage a bookmark: dead links come back as `dead` or `unreachable` so you can retire them without guessing, rather than raw HTML. Results are cached locally per URL; pass refresh:true to bypass the cache.

NameTypeReqDescription
refreshbooleanBypass the local cache and re-fetch
urlstringyesThe URL to preview

No output schema declared.

No examples provided.

list_bookmarks ~101

List bookmarks from detected browsers. Supports folder filter and pagination.

NameTypeReqDescription
folderstringOnly bookmarks whose folder path contains this string (case-insensitive)
limitinteger
offsetinteger
sourcestringFilter by browser ("chrome", "safari", "firefox", "edge", "brave", "arc", "vivaldi") or a source id from list_sources. Omit for all.

No output schema declared.

No examples provided.

list_sources ~56

Detect every bookmark source on this machine: Chromium-family profiles (Chrome, Edge, Brave, Arc, Vivaldi), Firefox profiles, and Safari (incl. Reading List). Returns ids usable as the `source` argument of other tools.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

parse_export_file ~72

Parse a bookmark export file from disk into clean JSON. Auto-detects: browser bookmark HTML (Netscape), Pocket CSV, Instapaper CSV, Raindrop CSV, or a plain URL list.

NameTypeReqDescription
formatstring
pathstringyesAbsolute path to the export file

No output schema declared.

No examples provided.

recent_bookmarks ~93

Bookmarks added in the last N days, newest first. Useful for `what did I save this week?`.

NameTypeReqDescription
daysinteger
limitinteger
sourcestringFilter by browser ("chrome", "safari", "firefox", "edge", "brave", "arc", "vivaldi") or a source id from list_sources. Omit for all.

No output schema declared.

No examples provided.

search_bookmarks ~89

Case-insensitive search across bookmark titles, URLs, folders, and tags in every detected browser.

NameTypeReqDescription
limitinteger
querystringyes
sourcestringFilter by browser ("chrome", "safari", "firefox", "edge", "brave", "arc", "vivaldi") or a source id from list_sources. Omit for all.

No output schema declared.

No examples provided.