Skip to main content
Glama
Phit137

Bookmark MCP Server

by Phit137

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 bookmark

  • url (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

  1. Clone this repository

  2. 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

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    F
    maintenance
    Enables 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.
    8
  • A
    license
    -
    quality
    D
    maintenance
    Enables 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.
    14
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    A 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.
    2
    15
    Apache 2.0
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.
    MIT

View all related MCP servers

Related MCP Connectors

  • 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.

  • Read, edit, publish, and preview your pepita websites from Claude.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Phit137/bookmark-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server