veyra-bookmarks
veyra-bookmarks
Ein MCP-Tool zur Verwaltung von Lesezeichen und Links für KI-Agenten, mit Tag-Filterung, Kategorien und Volltextsuche. Lesezugriffe sind immer kostenlos. Schreibvorgänge erfordern eine Autorisierung über den Veyra Commit-Modus.
Übersicht
veyra-bookmarks bietet KI-Agenten eine persistente Link-Bibliothek auf Basis von SQLite. Agenten können Lesezeichen frei durchsuchen und abrufen. Das Speichern, Aktualisieren und Löschen erfordert den Veyra-Commit-Modus.
Related MCP server: mcp-bookmark-server
Installation
npm install
npm run buildDie Daten werden unter ~/.veyra-bookmarks/data.db gespeichert und beim ersten Start automatisch erstellt.
MCP-Konfiguration (Claude Desktop)
{
"mcpServers": {
"veyra-bookmarks": {
"command": "node",
"args": ["/absolute/path/to/veyra-bookmarks/dist/index.js"]
}
}
}Tools
Tool | Eingabe | Klasse | Preis |
|
| — | KOSTENLOS |
|
| — | KOSTENLOS |
|
| — | KOSTENLOS |
|
| A | €0.005 |
|
| A | €0.005 |
|
| B | €0.02 |
Beispiele
Lesen (kein Token erforderlich)
// List all bookmarks
{ "tool": "list_bookmarks", "arguments": {} }
// Filter by category
{ "tool": "list_bookmarks", "arguments": { "category": "research" } }
// Search by keyword
{ "tool": "search_bookmarks", "arguments": { "query": "typescript" } }Schreiben (Veyra-Token erforderlich)
// Save a bookmark
{
"tool": "save_bookmark",
"arguments": {
"url": "https://www.typescriptlang.org/docs/",
"title": "TypeScript Docs",
"tags": "typescript,docs,reference",
"category": "development",
"veyra_token": "vt_..."
}
}
// Update tags/category
{
"tool": "update_bookmark",
"arguments": {
"id": "1712345678-abc1234",
"tags": "typescript,docs,pinned",
"veyra_token": "vt_..."
}
}
// Delete
{
"tool": "delete_bookmark",
"arguments": { "id": "1712345678-abc1234", "veyra_token": "vt_..." }
}Fehlerantwort bei fehlendem Token
{
"error": "VeyraCommitRequired",
"message": "Write operations require Veyra commit mode.",
"currentMode": "open",
"requiredMode": "commit",
"authorize_endpoint": "https://api.veyra.to/v1/authorize-action",
"docs_url": "https://veyra.to"
}Funktionsweise von Veyra
Veyra ist eine Autorisierungsschicht für den Commit-Modus bei KI-Agenten. Wenn ein Agent einen Schreibvorgang versucht:
Der Agent ruft das Tool ohne
veyra_tokenauf → erhältVeyraCommitRequiredmitauthorize_endpoint.Der Agent/Benutzer ruft den Autorisierungs-Endpunkt auf, um ein Token zu erhalten.
Der Agent wiederholt den Vorgang mit gesetztem
veyra_token.veyra-bookmarksverifiziert das Token über@veyrahq/sdk-node, bevor die Aktion ausgeführt wird.
Weitere Informationen finden Sie unter veyra.to.
Lizenz
MIT
Gehostetes Paket (empfohlen)
Bevorzugen Sie das gehostete Paket für eine Ein-URL-Integration:
{
"mcpServers": {
"veyra": {
"url": "https://mcp.veyra.to/sse"
}
}
}Eine URL. 48 Tools. 24 kostenlose Lesezugriffe. 24 geschützte Schreibzugriffe.
Gehostetes Paket: https://mcp.veyra.to/sse
Paket-Manifest: https://mcp.veyra.to/.well-known/veyra-pack.json
Verwenden Sie das gehostete Paket, wenn Sie den schnellsten MCP-Integrationspfad über alle Veyra-Tool-Familien hinweg wünschen. Verwenden Sie dieses eigenständige Paket, wenn Sie dieses Tool speziell für sich allein benötigen.
Teil des Veyra-Ökosystems
Veyra ist der Commit-Modus für produktive KI-Agenten-Aktionen. Alle Tools: Lesen kostenlos, Schreiben erfordert Veyra-Commit-Modus.
Tool | Beschreibung | Installation |
Key-Value-Speicher |
| |
Notizen mit Tags |
| |
Aufgabenverwaltung |
| |
Code-Snippet-Speicher |
| |
Kontaktverwaltung |
| |
Formular-Builder |
| |
Webhook-Sender |
|
SDK: npm install @veyrahq/sdk-node Website: veyra.to
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.
Persistent memory for AI agents. Search and store durable facts, preferences and decisions.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceContact manager for AI agents with company, tags, and full-text search. Reads are free, writes require Veyra commit mode.10MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.MIT
- 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
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/Aquariosan/veyra-bookmarks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server