veyra-webhooks
veyra-webhooks
Una herramienta MCP de retransmisión de webhooks para agentes de IA. Registra URLs de destino, envía cargas útiles (payloads) mediante HTTP y explora el historial de envíos. Las lecturas son siempre gratuitas. Las operaciones de escritura requieren autorización en modo commit de Veyra.
Descripción general
veyra-webhooks permite a los agentes de IA interactuar con servicios externos a través de endpoints de webhook registrados. El historial se guarda en SQLite para auditoría. El envío de cargas útiles y la gestión de registros requieren el modo commit de Veyra.
Related MCP server: mcp-webhook-tools
Instalación
npm install
npm run buildLos datos se almacenan en ~/.veyra-webhooks/data.db, creado automáticamente en la primera ejecución.
Configuración de MCP (Claude Desktop)
{
"mcpServers": {
"veyra-webhooks": {
"command": "node",
"args": ["/absolute/path/to/veyra-webhooks/dist/index.js"]
}
}
}Herramientas
Herramienta | Entrada | Clase | Precio |
|
| — | GRATIS |
|
| — | GRATIS |
|
| A | 0,005 € |
|
| B | 0,02 € |
|
| B | 0,02 € |
Ejemplos
Lectura (no se necesita token)
// List all registered webhooks
{ "tool": "list_webhooks", "arguments": {} }
// View send history
{ "tool": "get_history", "arguments": { "webhook_id": "1712345678-abc1234", "limit": 20 } }Escritura (se requiere token de Veyra)
// 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_..."
}
}Respuesta de error cuando falta el 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"
}Cómo funciona Veyra
Veyra es una capa de autorización en modo commit para agentes de IA. Cuando un agente intenta una escritura:
El agente llama a la herramienta sin
veyra_token→ recibeVeyraCommitRequiredconauthorize_endpoint.El agente/usuario llama al endpoint de autorización para obtener un token.
El agente vuelve a intentarlo con el
veyra_tokenconfigurado.veyra-webhooksverifica el token a través de@veyrahq/sdk-nodeantes de ejecutar la acción.
Consulta veyra.to para ver la documentación completa.
Licencia
MIT
Paquete alojado (recomendado)
Prefiere el paquete alojado para una integración de una sola URL:
{
"mcpServers": {
"veyra": {
"url": "https://mcp.veyra.to/sse"
}
}
}Una URL. 48 herramientas. 24 lecturas gratuitas. 24 escrituras protegidas.
Paquete alojado: https://mcp.veyra.to/sse
Manifiesto del paquete: https://mcp.veyra.to/.well-known/veyra-pack.json
Utiliza el paquete alojado cuando desees la ruta de integración MCP más rápida en todas las familias de herramientas de Veyra. Utiliza este paquete independiente cuando desees específicamente esta herramienta por sí sola.
Parte del ecosistema Veyra
Veyra es el modo commit para acciones de agentes de IA en producción. Todas las herramientas: lecturas gratuitas, las escrituras requieren el modo commit de Veyra.
Herramienta | Descripción | Instalación |
Almacenamiento de memoria clave-valor |
| |
Toma de notas con etiquetas |
| |
Gestión de tareas |
| |
Almacenamiento de fragmentos de código |
| |
Gestor de marcadores |
| |
Gestión de contactos |
| |
Creador de formularios |
|
SDK: npm install @veyrahq/sdk-node Sitio web: 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
Fire-and-forget webhooks for agents with guaranteed, retried delivery and status polling. x402
Anonymous webhook capture, inspection, waiting, and response configuration for AI agents.
- webhook.coOAuthco.webhook
Receive, inspect, replay and deliver webhooks — with signature verification and agent triggers.
Email for AI agents: send mail, manage contacts, automations & webhooks. Zero-DNS first send.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to create disposable webhook URLs, capture incoming HTTP requests, inspect headers and bodies, and replay them against local or remote endpoints, streamlining the webhook handler development loop.515MIT
- AlicenseAqualityDmaintenanceWebhook management and testing tools for AI agents. Provides tools for sending, validating, generating, and debugging webhooks.523MIT
- AlicenseAqualityBmaintenanceEnables AI agents to create callback endpoints, wait for async webhook results, and verify signatures, eliminating the need for polling.8462MIT
- AlicenseNot gradedqualityAmaintenanceA webhook management and delivery service with MCP tools for endpoints, deliveries, relay, and incoming webhooks, enabling autonomous agents to send, track, and relay webhooks.MIT
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-webhooks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server