mcpbookmarks CLAUDE.md

mcpbookmarks CLAUDE.md is an instructions file for coding agents from linonon/mcpbookmarks. It costs 8,423 tokens per session, scanned A, original, MIT.

Project instructions for an AI-bookmark VS Code extension, which marks important code locations and explains them for easier navigation.

In plain words
What is it for?
Use them when working on the extension's bookmark tools, sidebar, inline markers, hover previews, or MCP connection.
Why use it?
They keep Claude Code's guidance aligned with the project's shared instructions and its Gemini CLI instructions.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/linonon/mcpbookmarks/claude-md
Clone the repo
git clone --depth 1 https://github.com/linonon/mcpbookmarks

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcpbookmarks CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/linonon/mcpbookmarks/claude-md.svg)](https://agentmods.dev/instructions/linonon/mcpbookmarks/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/linonon/mcpbookmarks/claude-md"><img src="https://agentmods.dev/badge/instructions/linonon/mcpbookmarks/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,423 This file is loaded in full into every session.
When invoked 8,423 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.08423 $0.08423
Opus 5 $0.04211 $0.04211
Sonnet 5 $0.01685 $0.01685
Haiku 4.5 $0.00842 $0.00842

Measured 4d ago against content hash 634ad1afa7f3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcpbookmarks CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

CLAUDE.md · 923 lines

How it starts

The opening of the file, as written. The whole thing — 923 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP Bookmarks - VSCode Extension

这个文档应该与 ./GEMINI.md 中的说明保持同步更新, 应该保持一模一样的内容.

項目概述

這是一個 VSCode 擴展,提供「AI 書籤」功能。AI(通過 Claude Code)可以在代碼中標記重要位置,並寫入詳細說明,幫助理解和導航代碼庫。

核心功能

  1. AI 可調用的書籤工具 - 通過 MCP 協議暴露書籤操作
  2. 手動書籤管理 - 用戶可直接在 VSCode 中創建、編輯、刪除書籤
  3. 書籤側邊欄 - 在 VSCode 中顯示所有書籤,按文件分組
  4. 行內標記 - 在編輯器 gutter 區域顯示書籤圖標
  5. 懸浮預覽 - hover 時顯示書籤說明

技術架構

┌─────────────────────────────────────────────────────────┐
│                      VSCode                              │
│  ┌─────────────────┐    ┌─────────────────────────────┐ │
│  │  擴展 UI         │◄───│  MCP Server (內嵌)          │ │
│  │  - TreeView     │    │  - add_bookmark             │ │
│  │  - Decorations  │    │  - list_bookmarks           │ │
│  │  - HoverProvider│    │  - remove_bookmark          │ │
│  └─────────────────┘    │  - update_bookmark          │ │
│                          └──────────▲──────────────────┘ │
└─────────────────────────────────────│────────────────────┘
                                      │ MCP (stdio)
                              ┌───────┴───────┐
                              │  Claude Code   │
                              └───────────────┘

雙版本 MCP Server 架構 (重要!)

本項目有兩套獨立的 MCP Server 實現, 修改功能時必須同時修改兩邊:

版本 用途 文件
Embedded VSCode 擴展內嵌運行 server.ts, handlers.ts, bookmarkStore.ts
Standalone Claude Code 獨立運行 serverStandalone.ts, handlersStandalone.ts, bookmarkStoreStandalone.ts

為什麼有兩個版本?

  • Embedded: 在 VSCode 進程內運行, 可以直接訪問 VSCode API (如 vscode.workspace)
  • Standalone: 通過 npx 獨立運行, 不依賴 VSCode, Claude Code 使用這個版本

修改功能時的注意事項

任何 MCP 工具的修改都需要同時修改兩套文件!

例如添加新工具:

  1. src/store/types.ts - 添加類型定義 (共用)
  2. src/store/bookmarkStore.ts + bookmarkStoreStandalone.ts - 添加存儲邏輯
  3. src/mcp/handlers.ts + handlersStandalone.ts - 添加處理函數
  4. src/mcp/server.ts + serverStandalone.ts - 添加工具定義和 switch case

重要: Serena MCP 行號偏移問題

使用 Serena MCP 獲取代碼符號位置時, 必須進行行號轉換:

Read the full file on GitHub · 923 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 923 lines · 8,423 tokens per session scan A 634ad1afa7f3

Subscribe to this mod's changes

mcpbookmarks CLAUDE.md is an instructions file published in the GitHub repository linonon/mcpbookmarks (1 stars, last pushed 6mo ago), licensed MIT. It adds 8,423 tokens to every session, about $0.0421 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,733 tokens