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
ホスト型パック (推奨)
1つのURLで統合できるホスト型パックを推奨します:
{
"mcpServers": {
"veyra": {
"url": "https://mcp.veyra.to/sse"
}
}
}1つのURL。48個のツール。24個の無料読み取り。24個の保護された書き込み。
ホスト型パック: https://mcp.veyra.to/sse
パックマニフェスト: 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