mcp-bookmark-server
MCP Bookmark Server
AIアシスタントがOpenAIのRAG機能を使用してブックマークを保存・検索できるようにするModel Context Protocol (MCP) サーバーです。URLをメタデータと共に保存し、ブックマークコレクション全体に対してインテリジェントな検索を実行します。
機能
ブックマークの保存: タイトルと説明付きでURLを保存
スマート検索: セマンティック検索を使用してブックマークのタイトルと説明を横断的に検索
AI搭載: OpenAIとの統合により、インテリジェントなブックマーク管理と分類を実現
マルチプラットフォーム: MCP互換プラットフォーム間で簡単に統合可能
Related MCP server: bookmark-lens
インストール
pip install mcp-bookmark-serverMCPホストの設定
Claude Desktop
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"
}
}
}
}Cursor IDE
.cursor/mcp_config.json のMCP設定に追加します:
{
"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"
}
}
}
}Windsurf IDE
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"
}
}
}
}Zed Editor
Zed設定のMCPサーバーセクションに追加します:
{
"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"
}
}
}
}
}Continue (VS Code拡張機能)
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_bookmark
新しいブックマークを保存します。
パラメータ:
url(必須): ブックマークするURLtitle(任意): ブックマークのタイトルdescription(任意): 説明
例:
{
"url": "https://example.com",
"title": "Example Site",
"description": "A useful example website"
}search_bookmarks
保存されたブックマークを検索します。
パラメータ:
query(必須): 検索語句
例:
{
"query": "python tutorial"
}使用例
MCPホストで設定が完了すると、自然言語で以下のように使用できます:
「このブックマークを保存して: https://python.org タイトルは 'Python Official'」
「Reactのチュートリアルに関するブックマークを検索して」
「機械学習に関するブックマークを見つけて」
「https://github.com/microsoft/vscode を開発ツールとしてブックマークに保存して」
要件
Python 3.11以上
OpenAI APIキー
uvxパッケージマネージャーがインストールされていることGitHubリポジトリへのアクセスのためのインターネット接続
環境変数
OPENAI_API_KEY: AIによる分類および検索強化に必須
サポート
問題報告: GitHub Issues
MCPドキュメント: Model Context Protocol
ライセンス
MIT License
Model Context Protocolエコシステム向けに構築されました
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Save and organize web finds in persistent, user-controlled collections for AI assistants.
Turn the LinkedIn posts you save into a knowledge base your assistant can search and cite.
AI research library. Save, organise and reuse notes and webpages as clean markdown context.
Search your knowledge bases from any AI assistant using hybrid RAG.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables semantic search across browser bookmarks from Chrome, Firefox, Edge, Opera, and other browsers using natural language queries. Extracts and indexes bookmark content and metadata into a vector database for intelligent retrieval.1Apache 2.0
- AlicenseAqualityCmaintenanceEnables AI assistants to save, search, and manage bookmarks with semantic search, automatic metadata extraction, and optional LLM-powered enrichment, all running locally.86MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to save and search bookmarks with semantic search using OpenAI, allowing storage of URLs with metadata and intelligent retrieval across collections.2MIT
- FlicenseNot gradedqualityDmaintenanceEnables semantic search and retrieval of bookmarked URLs content using vector embeddings, with support for multiple backends and AI assistant integration.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/preedew17/mcp-bookmark'
If you have feedback or need assistance with the MCP directory API, please join our Discord server