Webhook集成
STDIO用于发送消息的webhook集成服务
用于发送消息的webhook集成服务
An MCP server implementation that integrates with webhooks, providing message sending capabilities.
To install MCP Webhook Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @kevinwatt/mcp-webhook --client claude
npm install @kevinwatt/mcp-webhook
{ "mcpServers": { "webhook": { "command": "npx", "args": [ "-y", "@kevinwatt/mcp-webhook" ], "env": { "WEBHOOK_URL": "your-webhook-url" }, "alwaysAllow": [ "send_message" ] } } }
content
(string, required): Message content to sendusername
(string, optional): Display nameavatar_url
(string, optional): Avatar URLAsk your LLM to:
"Send a message to webhook: Hello World!"
"Send a message with custom name: content='Testing', username='Bot'"
If needed, start the server manually:
npx @kevinwatt/mcp-webhook
MIT
kevinwatt