Skip to main content
ClaudeWave
Fisher521 avatar
Fisher521

bookmarks-lifecycle

Ver en GitHub

A 24h / 30d / forever lifecycle for the bookmarks you already have. Local read-only MCP server. Expiring means leaving the queue, never deletion.

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/6/2026
Install in Claude Code / Claude Desktop
Method: NPX · bookmarks-lifecycle
Claude Code CLI
claude mcp add bookmarks-lifecycle -- npx -y bookmarks-lifecycle
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "bookmarks-lifecycle": {
      "command": "npx",
      "args": ["-y", "bookmarks-lifecycle"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# bookmarks-lifecycle

**Give your saved bookmarks a lifecycle.**

Saving is easy. Almost nothing you save ever gets decided about — it just
accumulates. This is a local MCP server that puts every bookmark on a clock:
24 hours to decide, or 30 days to keep watching, or keep it for good. Nothing
is ever deleted — a bookmark that times out without a decision just leaves
your attention, not your disk, and every change (including ones an AI made)
can be undone.

```
Aggregates via bookmarks-mcp. Writes only its own local state file, atomically. No accounts, no cloud, no network calls.
```

## The model

Five states:

| State | Meaning | Counts down? |
|---|---|---|
| `inbox` | Aggregated, not yet up for a decision | no |
| `pending` | The 24-hour layer — today's actual to-do list | yes |
| `watching` | The 30-day layer — "give it more time" | yes |
| `kept` | Decided: keep this for good | no |
| `lapsed` | Timed out or let go — **fully recoverable, never deleted** | no |

```
aggregate → inbox
              │ drip (up to N/day, oldest first)
              ▼
           pending ──you decide──→ watching / kept / lapsed
              │
              └──24h, no decision────────────→ lapsed
                                                  ▲
           watching ──30d, no decision───────────┘
              └──you decide──→ kept

lapsed ──restore──→ pending (clock resets)
any state ──undo (by history event)──→ whatever it was right before that event
```

From `pending` you can go to any of the three outcomes. From `watching`, a
decision can only be `keep` — that matches the model above; to back out of a
`watch` or a `drop`, use `undo` rather than re-deciding an item that's
already moved on.

Bookmarks don't all land in `pending` the moment you aggregate them — a
one-time import of 3,000 old bookmarks would otherwise all time out on the
same day and the mechanism would mean nothing. They **drip in** at a daily
rate instead (default 15/day, oldest first — by real save date when the
source provides one). This is computed lazily whenever you call a tool, not
by a background timer, and it does **not** accumulate across a long absence:
however many days you've been away, one call promotes at most one day's
quota. A 3,000-bookmark backlog at 15/day realistically takes months of
daily visits to clear — that's an honest tradeoff of "no reminders, nothing
runs unless you ask", not a claim that this replaces a habit-forming app.

## Install

No account, no API key, no configuration — it works the moment it's
installed.

Claude Code:

```bash
claude mcp add -s user bookmarks-lifecycle -- npx -y bookmarks-lifecycle
```

Claude Desktop / Cursor / any MCP client (`mcpServers` JSON):

```json
{
  "mcpServers": {
    "bookmarks-lifecycle": {
      "command": "npx",
      "args": ["-y", "bookmarks-lifecycle"]
    }
  }
}
```

To run from source instead (for development), clone `parse-bookmarks`,
`bookmarks-mcp`, and this repo as sibling directories, run `npm install` in
`bookmarks-mcp` and then in `bookmarks-lifecycle`, and point your client at
`node /absolute/path/to/bookmarks-lifecycle/src/index.js`.

**Use `-s user`.** Without it the scope defaults to `local`, which registers the
server only for the directory you ran the command in — you'd have to be inside
that folder for your assistant to see it. Your bookmarks have nothing to do with
which code project you happen to be sitting in, so register it once for your
whole account.

**Config file locations** (for the JSON form above):
- Claude Desktop: `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
- Cursor: `~/.cursor/mcp.json` (or per-project `.cursor/mcp.json`)

**Verifying it's connected**: ask your assistant to call the `stats` tool, or
check your client's MCP/server log — a successful `initialize` handshake and
a `tools/list` containing `intake, today, decide, list_layer, restore, undo,
stats` means it's up.

**After changing any environment variable below**, fully restart your MCP
client's connection to this server (quit/reopen Claude Desktop, or restart
the Cursor MCP process) — it reads them once at startup.

## First run

If you're on macOS and want Safari bookmarks included, the app hosting this
server (Claude Desktop, your terminal, Cursor) needs **Full Disk Access**
(System Settings → Privacy & Security → Full Disk Access) — `~/Library/Safari`
is protected. Without it, `intake`'s response will show `"sourceStatus":
"permission_denied"` and a `warnings` entry explaining exactly that; it will
NOT silently look like an empty result. Chromium browsers and Firefox need
nothing extra.

Call `intake` first — nothing shows up in `today` until you do. Then `today`
gives you the day's actual queue. If both `intake` and `today` come back
completely empty and `sourceStatus` says `"ok"`, that's an honest "you have
no bookmarks in the sources this scanned" — check `sourceStatus` before
assuming something's broken:

| `sourceStatus` | Meaning |
|---|---|
| `no_sources` | No supported browser was even detected on this machine |
| `permission_denied` | At least one source failed to read (commonly Safari without Full Disk Access) |
| `empty` | Every source scanned successfully and genuinely has 0 bookmarks |
| `ok` | Scanned successfully and found something |

**`no_sources` even though you can see bookmarks in your browser?** This detects
Chromium browsers (Chrome, Edge, Brave, Arc, Vivaldi, Chromium) only in their
standard per-OS install locations. If your browser uses a custom profile or
data directory (a separate work profile, a portable install, a renamed user
data folder, …), it won't be found automatically:

1. Open `chrome://version` in that browser (`edge://version`, `brave://version`,
   etc. — the same page exists in every Chromium browser) and copy the value
   next to **Profile Path**.
2. In your MCP client's config for this server, add an environment variable
   `CHROMIUM_BOOKMARKS_PATH` set to that path with `/Bookmarks` appended, e.g.
   `"/Users/you/Library/Application Support/BraveSoftware/Brave-Browser/Custom/Bookmarks"`.
   Comma-separate multiple paths if you have more than one profile to include.
3. Fully restart the MCP client's connection to this server (see
   [Configuration](#configuration) below).

This doesn't apply to Safari — see the Full Disk Access note above instead.

## Talking to it

You never call these tools yourself — your assistant does. You just talk. If
you'd rather be walked through it, run the **`clean_up_my_bookmarks`** prompt
once (in Claude Code: `/mcp`; in Claude Desktop: the prompts menu) and it will
set you up and do one round with you.

Otherwise, plain sentences are enough:

| Say something like | What happens |
|---|---|
| "Pull in my browser bookmarks" | `intake` — scans your browsers, adds new URLs to the inbox |
| "What should I look at today?" | `today` — the day's queue, oldest first, up to the daily quota |
| "Keep the first one, drop the last two" | `decide` — after you've confirmed, not before |
| "Actually, undo that" | `undo` — reverses any decision, including "keep" |
| "What did I let go of?" | `list_layer` on `lapsed` — everything is still there |
| "Bring that one back" | `restore` — returns it to the queue with a fresh clock |
| "How much is left?" | `stats` — counts per layer and what's still waiting in inbox |

Two things worth knowing on day one:

- **Nothing reminds you.** There is no background process and no notification.
  The queue only moves when you ask — which also means it can never surprise you.
- **An empty result explains itself.** Every response carries a `nextStep`
  telling your assistant what to suggest, so "0 items" never has to be guessed
  at: it will say whether you simply haven't scanned yet, whether today's batch
  is done, or whether a source failed to read.

## Tools

| Tool | What it does |
|---|---|
| `intake` | Scan bookmark sources, merge new ones into `inbox`, reconcile ones that moved or disappeared |
| `today` | The `pending` layer right now, oldest first — your daily entry point |
| `decide` | Judge one or more items: `keep` / `watch` / `drop` |
| `list_layer` | See any single layer, paginated (default 50/page), including `lapsed` ("what did I let go of") |
| `restore` | Bring a `lapsed` item back to `pending`, clock reset |
| `undo` | Revert an item to what it was right before one of its own history events — works for `kept`/`watching` too, not just `lapsed` |
| `stats` | Counts per layer, today's decision count, how much is waiting in `inbox` |

Every read tool (`today`/`list_layer`/`stats`) may still write to disk on
the call you make: expiry and drip are computed lazily, so even "just
looking" can move items between layers as a side effect. It only writes
when something actually changed — a call that finds nothing due and nothing
to drip touches nothing.

Plus two prompts:

| Prompt | When |
|---|---|
| `clean_up_my_bookmarks` | First time. Explains the decision-clock mechanism, runs `intake`, and does one small triage round with you. |
| `daily_triage` | Every day after that. `today` → a suggestion per item → waits for your confirmation → applies it. |

Both `intake` and `today` also return a `nextStep` object (`code` + `why`) so
your assistant knows what to suggest next instead of inferring it from an
empty list. It is operational guidance only — never promotion.

## Honesty about authorization

**This server cannot verify that a tool call attributed to `"user"` actually
came from you confirming something.** Every parameter it receives — including
`actorClaim: "user"` — comes from the AI, over the same channel as everything
else. There is no separate, trusted channel this code can check. An earlier
version of this README claimed "AI can't act without your say-so" as a
server-enforced guarantee; that was tested and shown to be false — an AI
that simply omits the field, or claims `"user"`, goes through unchallenged.
We're not going to repeat that claim.

What's act

Lo que la gente pregunta sobre bookmarks-lifecycle

¿Qué es Fisher521/bookmarks-lifecycle?

+

Fisher521/bookmarks-lifecycle es mcp servers para el ecosistema de Claude AI. A 24h / 30d / forever lifecycle for the bookmarks you already have. Local read-only MCP server. Expiring means leaving the queue, never deletion. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-06.

¿Cómo se instala bookmarks-lifecycle?

+

Puedes instalar bookmarks-lifecycle clonando el repositorio (https://github.com/Fisher521/bookmarks-lifecycle) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar Fisher521/bookmarks-lifecycle?

+

Nuestro agente de seguridad ha analizado Fisher521/bookmarks-lifecycle y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene Fisher521/bookmarks-lifecycle?

+

Fisher521/bookmarks-lifecycle es mantenido por Fisher521. La última actividad registrada en GitHub es del 2026-08-06, con 0 issues abiertos.

¿Hay alternativas a bookmarks-lifecycle?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega bookmarks-lifecycle en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: Fisher521/bookmarks-lifecycle
[![Featured on ClaudeWave](https://claudewave.com/api/badge/fisher521-bookmarks-lifecycle)](https://claudewave.com/repo/fisher521-bookmarks-lifecycle)
<a href="https://claudewave.com/repo/fisher521-bookmarks-lifecycle"><img src="https://claudewave.com/api/badge/fisher521-bookmarks-lifecycle" alt="Featured on ClaudeWave: Fisher521/bookmarks-lifecycle" width="320" height="64" /></a>

Más MCP Servers

Alternativas a bookmarks-lifecycle