veyra-webhooks
veyra-webhooks
一个面向 AI 代理的 Webhook 中继 MCP 工具。注册目标 URL,通过 HTTP 发送负载,并浏览发送历史。读取始终免费。写入操作需要 Veyra 提交模式授权。
概述
veyra-webhooks 让 AI 代理能够通过已注册的 Webhook 端点与外部服务进行交互。历史记录持久化存储在 SQLite 中以供审计。发送负载和管理注册需要 Veyra 提交模式。
Related MCP server: mcp-webhook-tools
安装
npm install
npm run build数据存储在 ~/.veyra-webhooks/data.db 中,首次运行时自动创建。
MCP 配置 (Claude Desktop)
{
"mcpServers": {
"veyra-webhooks": {
"command": "node",
"args": ["/absolute/path/to/veyra-webhooks/dist/index.js"]
}
}
}工具
工具 | 输入 | 类 | 价格 |
|
| — | 免费 |
|
| — | 免费 |
|
| A | €0.005 |
|
| B | €0.02 |
|
| B | €0.02 |
示例
读取(无需令牌)
// List all registered webhooks
{ "tool": "list_webhooks", "arguments": {} }
// View send history
{ "tool": "get_history", "arguments": { "webhook_id": "1712345678-abc1234", "limit": 20 } }写入(需要 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_..."
}
}缺少令牌时的错误响应
{
"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"
}Veyra 的工作原理
Veyra 是面向 AI 代理的提交模式授权层。当代理尝试写入时:
代理在不带
veyra_token的情况下调用工具 → 收到包含authorize_endpoint的VeyraCommitRequired响应。代理/用户调用授权端点以获取令牌。
代理使用设置好的
veyra_token重试。veyra-webhooks在执行操作前通过@veyrahq/sdk-node验证令牌。
请参阅 veyra.to 获取完整文档。
许可证
MIT
托管包(推荐)
建议使用托管包以实现单 URL 集成:
{
"mcpServers": {
"veyra": {
"url": "https://mcp.veyra.to/sse"
}
}
}一个 URL。48 个工具。24 个免费读取。24 个受保护的写入。
包清单: https://mcp.veyra.to/.well-known/veyra-pack.json
当您希望在所有 Veyra 工具系列中获得最快的 MCP 集成路径时,请使用托管包。 当您专门需要此工具独立运行时,请使用此独立包。
Veyra 生态系统的一部分
Veyra 是用于生产环境 AI 代理操作的提交模式。 所有工具:读取免费,写入需要 Veyra 提交模式。
工具 | 描述 | 安装 |
键值存储 |
| |
带标签的笔记记录 |
| |
任务管理 |
| |
代码片段存储 |
| |
书签管理器 |
| |
联系人管理 |
| |
表单构建器 |
|
SDK: npm install @veyrahq/sdk-node 网站: 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