Webhook MCP Server
A Model Context Protocol (MCP) server that sends webhook notifications when called.
You can use this server with webhook notification services like Echobell to get notified when long-running tasks are completed. Simply configure the server with your Echobell webhook URL (or another service’s URL) and instruct your AI assistant to “send me a notification when it’s done” within your task prompts.
Configuration
There are several ways to configure the MCP server:
Installing via Smithery
To install Webhook MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @noobnooc/webhook-mcp --client claude
Claude & Cursor & Windsurf
Configure Claude, Cursor or Windsurf to use the MCP server by adding this to your configuration:
- With NPM:
{
"mcpServers": {
"notification": {
"command": "npx",
"args": ["-y", "webhook-mcp"],
"env": {
"WEBHOOK_URL": "your-webhook-url-here"
}
}
}
}
- With Docker:
{
"mcpServers": {
"notification": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"WEBHOOK_URL",
"noobnooc/webhook-mcp"
],
"env": {
"WEBHOOK_URL": "<your-webhook-url-here>"
}
}
}
}
VS Code
Add the following configuration to your VS Code settings.json
:
- With NPM:
{
"mcp": {
"servers": {
"notification": {
"command": "npx",
"args": ["-y", "webhook-mcp"],
"env": {
"WEBHOOK_URL": "your-webhook-url-here"
}
}
}
}
}
- With Docker:
{
"mcp": {
"servers": {
"notification": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"WEBHOOK_URL",
"noobnooc/webhook-mcp"
],
"env": {
"WEBHOOK_URL": "<your-webhook-url-here>"
}
}
}
}
}
Environment Variables
WEBHOOK_URL
(required): The URL where webhook notifications will be sent
Parameters
The webhook can be called with optional parameters:
message
: Custom message to include in the webhook payloadurl
: External URL to include in the webhook payload asexternalLink
Development
To build the project:
npm install
npm run build
To run with the MCP inspector for debugging:
npm run inspector
Publishing
To build and publish the package:
npm run publish
Webhook MCP Server
Project Details
- noobnooc/webhook-mcp
- Last Updated: 5/1/2025
Recomended MCP Servers
This MCP server provides tools for listing and retrieving content from different knowledge bases.
connect to 50+ data stores via superset mcp server. Can use with open ai agent sdk, Claude app,...
A simple, working example of a Model Context Protocol (MCP) server that lets you play the classic Lemonade...
SSAFY 프로젝트 포트폴리오 정보 수집 가이드라인 mcp
An implementation of the Model Context Protocol for the World Bank open data API
Connect AI assistants to your ERPNext instance via the Model Context Protocol (MCP) using the official Frappe API.
한국투자증권 mcp server
MCP 서버 학습을 위한 간단예제 실습