Bookmark Manager MCP
[](https://mseep.ai/app/infinitepi-io-bookmark-manager-mcp)
[](https://mseep.ai/app/171ff51c-415e-45f8-b99d-c5c3c1b9e022)
# š Bookmark Manager MCP
> A Model Context Protocol (MCP) server for managing bookmarks with persistent storage
[](https://hub.docker.com/r/mindriftfall2infinitepiio/bookmark-manager-mcp)
[](https://github.com/infinitepi-io/bookmark-manager-mcp)
[](https://www.typescriptlang.org/)
[](https://modelcontextprotocol.io)
<img src="image/README/1753001290532.png" width="400" alt="Bookmark Manager MCP">
## š Overview
This MCP server provides a simple yet powerful bookmark management system that integrates seamlessly with Claude and other MCP-compatible clients. It offers persistent storage, categorization, and easy retrieval of your bookmarks.
## ⨠Features
- **š Persistent Storage**: Bookmarks are saved to `~/.data/bookmarks.json`
- **š·ļø Categories**: Organize bookmarks with custom categories
- **š Resource Discovery**: Browse bookmarks by category using MCP resources
- **š³ Container Support**: Ready-to-use container image (Docker/Podman)
- **ā” TypeScript**: Type-safe implementation with Zod validation
- **š MCP Integration**: Full Model Context Protocol compliance
## š ļø Installation
## š§ Claude Code Integration
```bash
# Add to Claude Code (Docker)
docker pull mindriftfall2infinitepiio/bookmark-manager-mcp:latest
claude mcp add bookmark-manager -- docker run \
--rm \
--interactive \
--volume ~/.data:/app/.data \
mindriftfall2infinitepiio/bookmark-manager-mcp:latest
# Or with Podman
podman pull mindriftfall2infinitepiio/bookmark-manager-mcp:latest
claude mcp add bookmark-manager -- podman run \
--rm \
--interactive \
--volume ~/.data:/app/.data \
mindriftfall2infinitepiio/bookmark-manager-mcp:latest
```
## š§ VS Code Integration
```bash
# Docker
docker pull mindriftfall2infinitepiio/bookmark-manager-mcp:latest
# Or Podman
podman pull mindriftfall2infinitepiio/bookmark-manager-mcp:latest
```
- Create `.vscode/mcp.json`
```json
{
"servers": {
"bookmark-manager": {
"command": "docker",
"args": [
"run",
"--rm",
"--interactive",
"--volume",
"~/.data:/app/.data",
"mindriftfall2infinitepiio/bookmark-manager-mcp:latest"
]
}
}
}
```
**For Podman users:**
```json
{
"servers": {
"bookmark-manager": {
"command": "podman",
"args": [
"run",
"--rm",
"--interactive",
"--volume",
"~/.data:/app/.data",
"mindriftfall2infinitepiio/bookmark-manager-mcp:latest"
]
}
}
}
```
### Local Development
```bash
# Clone the repository
git clone https://github.com/infinitepi-io/bookmark-manager-mcp.git
cd bookmark-manager-mcp
# Install dependencies
pnpm install
# Development mode
pnpm run dev
# Build for production
pnpm run build
pnpm start
```
## š Usage
### GitHub Copilot (VS Code)
Agent Mode + Natural Language or `#` prefix
```
Add bookmark for GitHub at https://github.com category development
#add bookmark: title "GitHub", url "https://github.com"
#list all my bookmarks in development category
```
### Claude Code (CLI)
**Usage:** `@` prefix
```bash
claude @bookmark-manager add bookmark for GitHub at https://github.com
claude @bookmark-manager search development bookmarks
claude @bookmark-manager list all bookmarks
```
### MCP Resources Available
- `bookmarks://all` - All bookmarks
- `bookmarks://mcp` - MCP-related bookmarks
- `bookmarks://general` - General bookmarks
- `bookmarks://{category}` - Custom category bookmarks
### Example Usage with Claude
```
Add a bookmark for "OpenAI Documentation" with URL "https://docs.openai.com" in category "ai"
List all my bookmarks
Show me all MCP-related bookmarks
```
## š¾ Data Storage
### Storage Location
- **Local**: `~/.data/bookmarks.json`
- **Container (Docker/Podman)**: `/app/.data/bookmarks.json` (mount your local `~/.data` directory)
### Data Format
```json
[
{
"title": "Model Context Protocol",
"url": "https://modelcontextprotocol.io/introduction",
"category": "mcp"
},
{
"title": "infinitepi-io",
"url": "https://github.com/infinitepi-io",
"category": "general"
}
]
```
### Data Persistence
- **Automatic Creation**: If no bookmarks file exists, default bookmarks are created
- **Error Handling**: Graceful error handling for file operations
- **Backup Strategy**: Simple JSON format allows easy backup and restoration
## š³ Container Configuration
### Image Details
- **Base Image**: `node:22-alpine`
- **Size**: Optimized for minimal footprint
- **Volumes**: `/app/.data` for persistent storage
## š Technical Details
### Dependencies
- **@modelcontextprotocol/sdk**: ^1.13.2
- **zod**: ^3.25.67 (Schema validation)
- **Node.js**: 22+
- **TypeScript**: 5.0+
### Build Process
```bash
# TypeScript compilation with esbuild
esbuild index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js
```
### Architecture
```
āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā
ā MCP Client āāāāāŗā MCP Server āāāāāŗā JSON Storage ā
ā (Claude) ā ā (This App) ā ā (~/.data/) ā
āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā
```
### Synching your bookmark to S3 or vice versa BYOS3(Bring your own s3 on aws)
- Use below function to copy the data from local to s3 or s3 to local:
- [bookmark_sync_to_local_tos3](https://github.com/infinitepi-io/bookmark-manager-mcp/blob/main/.dev/bookmark_sync_to_local_tos3)
- [bookmark_sync_to_s3_to_local](https://github.com/infinitepi-io/bookmark-manager-mcp/blob/main/.dev/bookmark_sync_to_s3_to_local)
## š¤ Contributing
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request
## š License
This project is licensed under the Apache License 2.0.
## š¤ Author
**Satish Tripathi**
- GitHub: [@infinitepi-io](https://github.com/infinitepi-io)
- Blog: https://dev.to/mindriftfall2infinitepiio/building-a-bookmark-manager-with-ai-integration-my-journey-with-model-context-protocol-2j32
## š Support
- **Issues**: [GitHub Issues](https://github.com/infinitepi-io/bookmark-manager-mcp/issues)
- **Documentation**: [MCP Documentation](https://modelcontextprotocol.io/introduction)
- **Container Registry**: [mindriftfall2infinitepiio/mcp](https://hub.docker.com/r/mindriftfall2infinitepiio/bookmark-manager-mcp)
---
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: 'add' is for creating new bookmarks, while 'list' is for retrieving existing ones. There is no overlap or ambiguity between these operations, making it easy for an agent to select the correct tool based on the task.
Both tools use simple, imperative verb names ('add' and 'list') that follow a consistent pattern. This naming style is clear and predictable, with no deviations or mixed conventions, ensuring readability and ease of use.
With only two tools, the server feels under-scoped for a bookmark manager, as it lacks essential operations like update, delete, or search. While the count is minimal, it does not provide complete coverage for basic CRUD functionality, making it borderline too few for the domain.
The toolset is severely incomplete for a bookmark manager, missing key operations such as update, delete, and search. This creates significant gaps that will likely cause agent failures when trying to manage bookmarks fully, as users cannot modify or remove entries.