Skip to main content
Glama
Aquariosan

veyra-webhooks

by Aquariosan

veyra-webhooks

Ein Webhook-Relay-MCP-Tool für KI-Agenten. Registrieren Sie Ziel-URLs, senden Sie Payloads via HTTP und durchsuchen Sie den Sendeverlauf. Lesezugriffe sind immer kostenlos. Schreibvorgänge erfordern eine Autorisierung im Veyra-Commit-Modus.

Übersicht

veyra-webhooks ermöglicht es KI-Agenten, über registrierte Webhook-Endpunkte mit externen Diensten zu interagieren. Der Verlauf wird zur Überprüfung in SQLite gespeichert. Das Senden von Payloads und die Verwaltung von Registrierungen erfordern den Veyra-Commit-Modus.

Related MCP server: mcp-webhook-tools

Installation

npm install
npm run build

Die Daten werden unter ~/.veyra-webhooks/data.db gespeichert und beim ersten Start automatisch erstellt.

MCP-Konfiguration (Claude Desktop)

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

Tools

Tool

Eingabe

Klasse

Preis

list_webhooks

{}

KOSTENLOS

get_history

{ webhook_id, limit? }

KOSTENLOS

register_webhook

{ name, url, headers?, veyra_token? }

A

0,005 €

send_webhook

{ webhook_id, payload, method?, veyra_token? }

B

0,02 €

delete_webhook

{ webhook_id, veyra_token? }

B

0,02 €

Beispiele

Lesen (kein Token erforderlich)

// List all registered webhooks
{ "tool": "list_webhooks", "arguments": {} }

// View send history
{ "tool": "get_history", "arguments": { "webhook_id": "1712345678-abc1234", "limit": 20 } }

Schreiben (Veyra-Token erforderlich)

// Register a webhook
{
  "tool": "register_webhook",
  "arguments": {
    "name": "Slack Notifications",
    "url": "https://hooks.slack.com/services/...",
    "headers": "{\"Authorization\": \"Bearer token123\"}",
    "veyra_token": "vt_..."
  }
}

// Send a payload (actually fires an HTTP request)
{
  "tool": "send_webhook",
  "arguments": {
    "webhook_id": "1712345678-abc1234",
    "payload": "{\"text\": \"Deployment complete\"}",
    "method": "POST",
    "veyra_token": "vt_..."
  }
}

// Delete a webhook (also clears its history)
{
  "tool": "delete_webhook",
  "arguments": {
    "webhook_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 im Commit-Modus für KI-Agenten-Aktionen. 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-webhooks verifiziert das Token über @veyrahq/sdk-node, bevor die Aktion 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 Ein-URL-Integration:

{
  "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

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-bookmarks

Lesezeichen-Manager

npm i -g veyra-bookmarks

veyra-contacts

Kontaktverwaltung

npm i -g veyra-contacts

veyra-forms

Formular-Builder

npm i -g veyra-forms

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

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

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