Skip to main content
Glama
Aquariosan

veyra-bookmarks

by Aquariosan

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 build

Die 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

list_bookmarks

{ tag?, category? }

KOSTENLOS

get_bookmark

{ id }

KOSTENLOS

search_bookmarks

{ query }

KOSTENLOS

save_bookmark

{ url, title?, tags?, category?, veyra_token? }

A

€0.005

update_bookmark

{ id, tags?, category?, veyra_token? }

A

€0.005

delete_bookmark

{ id, veyra_token? }

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:

  1. Der Agent ruft das Tool ohne veyra_token auf → erhält VeyraCommitRequired mit authorize_endpoint.

  2. Der Agent/Benutzer ruft den Autorisierungs-Endpunkt auf, um ein Token zu erhalten.

  3. Der Agent wiederholt den Vorgang mit gesetztem veyra_token.

  4. veyra-bookmarks verifiziert 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

veyra-memory

Key-Value-Speicher

npm i -g veyra-memory

veyra-notes

Notizen mit Tags

npm i -g veyra-notes

veyra-tasks

Aufgabenverwaltung

npm i -g veyra-tasks

veyra-snippets

Code-Snippet-Speicher

npm i -g veyra-snippets

veyra-contacts

Kontaktverwaltung

npm i -g veyra-contacts

veyra-forms

Formular-Builder

npm i -g veyra-forms

veyra-webhooks

Webhook-Sender

npm i -g veyra-webhooks

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.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to save, search, and manage bookmarks with semantic search, automatic metadata extraction, and optional LLM-powered enrichment, all running locally.
    8
    6
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI assistants to save and search bookmarks with semantic search using OpenAI, allowing storage of URLs with metadata and intelligent retrieval across collections.
    2
    MIT

Latest Blog Posts

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