Bookmark Manager MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bookmark Manager MCP ServerSave https://react.dev with title React Docs and tags frontend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bookmark Manager MCP Server
A lightweight MCP (Model Context Protocol) server that lets you save, tag, and search bookmarks directly from Claude Code. Instead of switching to a browser or separate app, you can manage your bookmarks conversationally — just tell Claude to save a link or find one you saved earlier.
Why It's Useful
Stay in your workflow — save and retrieve bookmarks without leaving the terminal
Natural language search — search by keyword across URLs, titles, and tags
Zero setup storage — bookmarks persist in a local JSON file, no database required
Simple and extensible — minimal codebase that's easy to customize
Related MCP server: Bookmark Manager MCP
Installation
Prerequisites
Node.js v18 or higher
Claude Code CLI installed
Steps
Clone or download this project:
cd ~/mcp-projects git clone <your-repo-url> my-first-mcp cd my-first-mcpInstall dependencies:
npm installAdd the server to your Claude Code MCP configuration. In your project's
.mcp.json:{ "mcpServers": { "bookmark-manager": { "command": "node", "args": ["index.js"], "cwd": "/path/to/my-first-mcp" } } }Start Claude Code in your project directory — the server will be available automatically.
Usage Examples
Save a bookmark with a title
"Add a bookmark to https://react.dev with the title React Documentation"
Bookmark saved!
ID: 1
URL: https://react.dev
Title: React Documentation
Tags: (none)Save a bookmark with tags
"Bookmark https://expressjs.com, title Express.js, tags: backend,nodejs,framework"
Bookmark saved!
ID: 2
URL: https://expressjs.com
Title: Express.js
Tags: backend, nodejs, frameworkSearch your bookmarks
"Search my bookmarks for react"
Found 1 bookmark(s):
• [1] React Documentation
https://react.dev
Tags: (none)Limitations and Known Issues
No delete or edit — bookmarks can be saved and searched, but there is currently no tool to update or remove individual bookmarks. You would need to manually edit
bookmarks.json.File-based storage — all bookmarks are stored in a single
bookmarks.jsonfile. This works well for personal use but is not designed for large-scale or multi-user scenarios.Search is basic — search performs case-insensitive substring matching across URL, title, and tags. There is no fuzzy matching or ranking.
No duplicate detection — saving the same URL twice will create two separate entries.
This server cannot be deployed
Maintenance
Related MCP Connectors
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Persistent memory for Claude Code and Cursor. Stop re-explaining your project every session.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Save and organize web finds in persistent, user-controlled collections for AI assistants.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceEnables users to access and manage their Pinboard bookmarks directly through Claude Desktop. Supports retrieving, adding, and updating bookmarks with date filtering, tagging, and bookmark analysis capabilities.9-
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides persistent storage, categorization, and retrieval of bookmarks through AI clients like Claude. It allows users to manage web links using custom categories and includes options for local JSON storage or AWS S3 synchronization.217Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.MIT
- AlicenseAqualityDmaintenanceEnables Claude Code and other MCP clients to manage bookmarks, collections, and tags in Raindrop.io accounts via natural language.152MIT