mcp-bookmark-server
MCP 북마크 서버
AI 어시스턴트가 OpenAI의 RAG 기능을 사용하여 북마크를 저장하고 검색할 수 있도록 지원하는 모델 컨텍스트 프로토콜(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
MCP 서버 아래의 Zed 설정에 추가하세요:
{
"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 라이선스
모델 컨텍스트 프로토콜 생태계를 위해 구축됨
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