Bookmark 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 MCP Serversave a bookmark titled 'MCP docs' with URL https://modelcontextprotocol.io"
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 MCP Server
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.
Related MCP server: Clawmarks
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 versionsDependencies
@modelcontextprotocol/sdk — Official MCP SDK
Node.js built-in modules:
fs,path,os
This server cannot be deployed
Maintenance
Related MCP Connectors
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.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.
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-
- AlicenseNot gradedqualityDmaintenanceEnables LLM agents to create annotated bookmarks and narrative trails to document code exploration and decision-making. It organizes these bookmarks into a navigable knowledge graph stored in a local JSON file, helping users track the context and reasoning behind code changes.5 npmMIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.MIT
- FlicenseNot gradedqualityDmaintenanceLets you save, tag, and search bookmarks directly from Claude Code using natural language commands, with persistent storage in a local JSON file.-