Bookmark Server
БесплатноНе проверенEnables Claude Code to save, find, and list bookmarks stored in a JSON file.
Описание
Enables Claude Code to save, find, and list bookmarks stored in a JSON file.
README
A simple MCP (Model Context Protocol) server that lets Claude Code save, find, and list bookmarks. Bookmarks are stored in a JSON file at ~/bookmarks/bookmarks.json.
Tools
save_bookmark
Saves a bookmark with a title and URL. Creates the ~/bookmarks/ directory and bookmarks.json if they don't exist.
Parameters:
title(string) — the name of the bookmarkurl(string) — the URL to bookmark
get_bookmark
Finds a bookmark by title using a case-insensitive search.
Parameters:
title(string) — the title to search for
list_bookmarks
Returns all saved bookmarks as an array. No parameters.
Installation
- Clone this repository
- Install dependencies:
npm install
Connecting to Claude Code
Per-project setup
Add a .mcp.json file to your project root:
{
"mcpServers": {
"bookmark-server": {
"command": "node",
"args": ["index.js"],
"cwd": "/path/to/my-first-mcp"
}
}
}
Global setup
To make the server available in every Claude Code session, add it to ~/.claude/settings.json:
{
"mcpServers": {
"bookmark-server": {
"command": "node",
"args": ["/path/to/my-first-mcp/index.js"]
}
}
}
Project Structure
my-first-mcp/
├── .gitignore # Excludes node_modules
├── .mcp.json # Claude Code MCP config (project-level)
├── .tours/ # CodeTour walkthrough
├── index.js # MCP server implementation
├── notes.md # Quick reference notes
├── package.json # Dependencies and scripts
└── package-lock.json # Locked dependency versions
Dependencies
- @modelcontextprotocol/sdk — Official MCP SDK
- Node.js built-in modules:
fs,path,os
Установка Bookmark Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/Phit137/bookmark-mcpFAQ
Bookmark Server MCP бесплатный?
Да, Bookmark Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Bookmark Server?
Нет, Bookmark Server работает без API-ключей и переменных окружения.
Bookmark Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Bookmark Server в Claude Desktop, Claude Code или Cursor?
Открой Bookmark Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Bookmark Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
