Bookmark Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Bookmark Mcp (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
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 bookmarkFinds a bookmark by title using a case-insensitive search.
Parameters:
title (string) — the title to search forReturns all saved bookmarks as an array. No parameters.
npm installAdd a .mcp.json file to your project root:
{
"mcpServers": {
"bookmark-server": {
"command": "node",
"args": ["index.js"],
"cwd": "/path/to/my-first-mcp"
}
}
}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"]
}
}
}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 versionsfs, path, os~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.