veyra-notes
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 auf Basis von SQLite. 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.
Related MCP server: Bruin
Installation
npm install
npm run buildNotizen 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 |
|
| — | KOSTENLOS |
|
| — | KOSTENLOS |
|
| — | KOSTENLOS |
|
| A | €0.005 |
|
| A | €0.005 |
|
| 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_..."
}
}Fehlerantwort 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:
Der Agent ruft das Tool ohne
veyra_tokenauf und erhält einenVeyraCommitRequired-Fehler mit einemauthorize_endpoint.Der Agent (oder der Benutzer in seinem Namen) ruft den Autorisierungs-Endpunkt auf, um ein Token zu erhalten.
Der Agent wiederholt den Tool-Aufruf mit gesetztem
veyra_token.veyra-notesverifiziert das Token über@veyrahq/sdk-node, bevor der Schreibvorgang ausgeführt wird.
Siehe veyra.to für die vollständige Dokumentation.
Lizenz
MIT
Hosted Pack (empfohlen)
Bevorzugen Sie das Hosted Pack für eine Integration über eine einzige URL:
{
"mcpServers": {
"veyra": {
"url": "https://mcp.veyra.to/sse"
}
}
}Eine URL. 48 Tools. 24 kostenlose Lesezugriffe. 24 geschützte Schreibzugriffe.
Hosted Pack: https://mcp.veyra.to/sse
Pack-Manifest: https://mcp.veyra.to/.well-known/veyra-pack.json
Verwenden Sie das Hosted Pack, wenn Sie den schnellsten MCP-Integrationspfad für alle Veyra-Tool-Familien 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: Lesezugriffe kostenlos, Schreibzugriffe erfordern den Veyra-Commit-Modus.
Tool | Beschreibung | Installation |
Key-Value-Speicher |
| |
Aufgabenverwaltung |
| |
Code-Snippet-Speicher |
| |
Lesezeichen-Manager |
| |
Kontaktverwaltung |
| |
Formular-Builder |
| |
Webhook-Sender |
|
SDK: npm install @veyrahq/sdk-node Website: veyra.to
This server cannot be deployed
Maintenance
Related MCP Connectors
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Save notes in seconds. Your AI can then search, read, write and tag them over MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceA simple note-taking MCP server for recording and managing notes with AI models.45 npm36GPL 2.0
- AlicenseNot gradedqualityCmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.1 npm2MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for a full-stack note-taking application, exposing CRUD tools for notes with SSE transport for AI agent integration.1-
- AlicenseAqualityAmaintenanceMCP server for managing a local, domain-agnostic knowledge base using Markdown notes with frontmatter. Enables AI agents to capture, read, search, link, and maintain notes with atomic writes and privacy controls.13MIT