Skip to main content
Glama

veyra-notes

Ein persistentes Notizsystem als MCP-Tool für KI-Agenten mit Tag-Filterung und Volltextsuche. Lesezugriffe sind immer kostenlos. Schreibvorgänge erfordern eine Autorisierung über den Veyra Commit-Modus.

Übersicht

veyra-notes bietet KI-Agenten eine zuverlässige Notiz-Ebene, die auf SQLite basiert. Agenten können Notizen frei lesen, auflisten und durchsuchen. Das Erstellen, Aktualisieren und Löschen von Notizen ist durch den Veyra-Commit-Modus geschützt – dies stellt bewusste und nachvollziehbare Schreibvorgänge sicher.

Installation

npm install
npm run build

Notizen werden unter ~/.veyra-notes/data.db gespeichert und beim ersten Start automatisch erstellt.

MCP-Konfiguration (Claude Desktop)

Fügen Sie Folgendes zu Ihrer claude_desktop_config.json hinzu:

{
  "mcpServers": {
    "veyra-notes": {
      "command": "node",
      "args": ["/absolute/path/to/veyra-notes/dist/index.js"]
    }
  }
}

Tools

Tool

Eingabe

Klasse

Preis

list_notes

{ tag?, limit? }

KOSTENLOS

get_note

{ id }

KOSTENLOS

search_notes

{ query }

KOSTENLOS

create_note

{ title, content, tags?, veyra_token? }

A

€0.005

update_note

{ id, content?, title?, veyra_token? }

A

€0.005

delete_note

{ id, veyra_token? }

B

€0.02

Beispiele

Lesen (kein Token erforderlich)

// List all notes
{ "tool": "list_notes", "arguments": {} }

// List notes by tag
{ "tool": "list_notes", "arguments": { "tag": "project-x" } }

// Get a specific note
{ "tool": "get_note", "arguments": { "id": "1712345678-abc1234" } }

// Search across title, content, and tags
{ "tool": "search_notes", "arguments": { "query": "meeting notes" } }

Schreiben (Veyra-Token erforderlich)

// Create a note
{
  "tool": "create_note",
  "arguments": {
    "title": "Sprint Planning",
    "content": "Goals for this sprint: ...",
    "tags": "work,planning",
    "veyra_token": "vt_..."
  }
}

// Update a note
{
  "tool": "update_note",
  "arguments": {
    "id": "1712345678-abc1234",
    "content": "Updated content...",
    "veyra_token": "vt_..."
  }
}

// Delete a note
{
  "tool": "delete_note",
  "arguments": {
    "id": "1712345678-abc1234",
    "veyra_token": "vt_..."
  }
}

Fehlermeldung bei fehlendem Token

{
  "error": "VeyraCommitRequired",
  "message": "Write operations require Veyra commit mode.",
  "currentMode": "open",
  "requiredMode": "commit",
  "transitionStrategy": "authorize_then_retry_with_x_veyra_token",
  "provider": "veyra",
  "authorize_endpoint": "https://api.veyra.to/v1/authorize-action",
  "docs_url": "https://veyra.to"
}

Funktionsweise von Veyra

Veyra ist eine Autorisierungsebene für den Commit-Modus bei KI-Agenten. Wenn ein Agent einen Schreibvorgang versucht:

  1. Der Agent ruft das Tool ohne veyra_token auf und erhält einen VeyraCommitRequired-Fehler mit einem authorize_endpoint.

  2. Der Agent (oder der Benutzer in seinem Namen) ruft den Autorisierungs-Endpunkt auf, um ein Token zu erhalten.

  3. Der Agent wiederholt den Tool-Aufruf mit gesetztem veyra_token.

  4. veyra-notes verifiziert das Token über @veyrahq/sdk-node, bevor der Schreibvorgang ausgeführt wird.

Siehe veyra.to für die vollständige Dokumentation.

Lizenz

MIT

-
security - not tested
F
license - not found
-
quality - not tested

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-notes'

If you have feedback or need assistance with the MCP directory API, please join our Discord server