mcp-bookmark-server
MCP Bookmark Server
Ein Model Context Protocol (MCP) Server, der es KI-Assistenten ermöglicht, Lesezeichen mithilfe der RAG-Funktionen von OpenAI zu speichern und zu durchsuchen. Speichern Sie URLs mit Metadaten und führen Sie intelligente Suchen in Ihrer Lesezeichensammlung durch.
Funktionen
Lesezeichen speichern: Speichern Sie URLs mit Titeln und Beschreibungen
Intelligente Suche: Durchsuchen Sie Lesezeichentitel und -beschreibungen mithilfe der semantischen Suche
KI-gestützt: Integration mit OpenAI für intelligentes Lesezeichenmanagement und Kategorisierung
Multi-Plattform: Einfache Integration über mehrere MCP-kompatible Plattformen hinweg
Related MCP server: bookmark-lens
Installation
pip install mcp-bookmark-serverKonfiguration für MCP-Hosts
Claude Desktop
Fügen Sie dies zu Ihrer claude_desktop_config.json hinzu:
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
Fügen Sie dies zu Ihren MCP-Einstellungen in .cursor/mcp_config.json hinzu:
{
"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
Fügen Sie dies zu Ihrer windsurf_config.json hinzu:
{
"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
Fügen Sie dies zu Ihren Zed-Einstellungen unter MCP-Server hinzu:
{
"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 Erweiterung)
Fügen Sie dies zu Ihrer continue/config.json hinzu:
{
"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"
}
}
]
}Verfügbare Tools
save_bookmark
Speichert ein neues Lesezeichen.
Parameter:
url(erforderlich): Die zu speichernde URLtitle(optional): Titel für das Lesezeichendescription(optional): Beschreibung
Beispiel:
{
"url": "https://example.com",
"title": "Example Site",
"description": "A useful example website"
}search_bookmarks
Durchsucht gespeicherte Lesezeichen.
Parameter:
query(erforderlich): Suchbegriffe
Beispiel:
{
"query": "python tutorial"
}Anwendungsbeispiele
Sobald die Konfiguration mit Ihrem MCP-Host abgeschlossen ist, können Sie natürliche Sprache verwenden:
"Speichere dieses Lesezeichen: https://python.org mit dem Titel 'Python Official'"
"Durchsuche meine Lesezeichen nach React-Tutorials"
"Finde Lesezeichen über maschinelles Lernen"
"Speichere https://github.com/microsoft/vscode als Lesezeichen für Entwicklungstools"
Anforderungen
Python 3.11+
OpenAI API-Schlüssel
uvxPaketmanager installiertInternetverbindung für den Zugriff auf das GitHub-Repository
Umgebungsvariablen
OPENAI_API_KEY: Erforderlich für KI-gestützte Kategorisierung und Suchoptimierung
Support
Probleme: GitHub Issues
MCP-Dokumentation: Model Context Protocol
Lizenz
MIT-Lizenz
Entwickelt für das Model Context Protocol-Ökosystem
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