Server data from the Official MCP Registry
An MCP server that provides [describe what your server does]
An MCP server that provides [describe what your server does]
The MCP bookmark server uses OpenAI's API for semantic search and storage, with proper authentication via environment variables. However, there are several security and code quality concerns: missing input validation on user-provided bookmark data before uploading to OpenAI, potential information disclosure through verbose logging, temporary file cleanup issues, and lack of error handling around API failures. The server's permissions are appropriate for its purpose (network_http for OpenAI API, env_vars for credentials, file_system for temporary storage), but implementation gaps create moderate risk. Package verification found 1 issue (1 critical, 0 high severity).
5 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: YOUR_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-preedew17-mcp-bookmark": {
"env": {
"YOUR_API_KEY": "your-your-api-key-here"
},
"args": [
"mcp-bookmark-server"
],
"command": "uvx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server that enables AI assistants to save and search bookmarks using OpenAI's RAG capabilities. Store URLs with metadata and perform intelligent searches across your bookmark collection.
pip install mcp-bookmark-server
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"bookmark": {
"command": "/usr/local/bin/uvx",
"args": [
"--from",
"git+https://github.com/preedew17/mcp-bookmark.git",
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
}
Add to your MCP settings in .cursor/mcp_config.json:
{
"mcpServers": {
"bookmark": {
"command": "/usr/local/bin/uvx",
"args": [
"--from",
"git+https://github.com/preedew17/mcp-bookmark.git",
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
}
Add to your windsurf_config.json:
{
"mcpServers": {
"bookmark": {
"command": "/usr/local/bin/uvx",
"args": [
"--from",
"git+https://github.com/preedew17/mcp-bookmark.git",
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
}
Add to your Zed settings under MCP servers:
{
"mcp": {
"servers": {
"bookmark": {
"command": "/usr/local/bin/uvx",
"args": [
"--from",
"git+https://github.com/preedew17/mcp-bookmark.git",
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
}
}
}
Add to your continue/config.json:
{
"mcpServers": [
{
"name": "bookmark",
"command": "/usr/local/bin/uvx",
"args": [
"--from",
"git+https://github.com/preedew17/mcp-bookmark.git",
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "your-openai-api-key-here"
}
}
]
}
save_bookmarkSave a new bookmark.
Parameters:
url (required): The URL to bookmarktitle (optional): Title for the bookmarkdescription (optional): DescriptionExample:
{
"url": "https://example.com",
"title": "Example Site",
"description": "A useful example website"
}
search_bookmarksSearch through saved bookmarks.
Parameters:
query (required): Search termsExample:
{
"query": "python tutorial"
}
Once configured with your MCP host, you can use natural language:
uvx package manager installedOPENAI_API_KEY: Required for AI-powered categorization and search enhancementMIT License
Built for the Model Context Protocol ecosystem
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.