Back to Browse

Webhook MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Capture HTTP, email, and DNS callbacks with webhook.site from MCP clients.

About

Capture HTTP, email, and DNS callbacks with webhook.site from MCP clients.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-zebbern-webhook-mcp-server": {
      "args": [
        "webhook-mcp-server"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Webhook.site MCP Server

PyPI Python MCP

A Model Context Protocol (MCP) server for webhook.site - instantly capture HTTP requests, emails, and DNS lookups. Perfect for testing webhooks, debugging API callbacks, security testing, and bug bounty hunting.

Security helper tools (SSRF, XSS, canary tokens) are for authorized testing only — systems you own or have explicit permission to test.


Table of Contents


Quick Start

Installation

# Using uvx (recommended - no install needed)
uvx webhook-mcp-server==2.2.2

# Or install via pip
pip install webhook-mcp-server==2.2.2

Use 2.2.2 or newer. 2.1.3 does not start on MCP 2.0.

VS Code / GitHub Copilot

Add to .vscode/mcp.json:

{
  "servers": {
    "webhook-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": ["webhook-mcp-server==2.2.2"]
    }
  }
}

Cursor

Add to .cursor/mcp.json (project) or your user MCP config:

{
  "mcpServers": {
    "webhook-mcp-server": {
      "command": "uvx",
      "args": ["webhook-mcp-server==2.2.2"]
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "webhook-mcp-server": {
      "command": "uvx",
      "args": ["webhook-mcp-server==2.2.2"]
    }
  }
}

What Can You Do?

Capture Webhooks

"Create a webhook and show me the URL"
"What requests have been sent to my webhook?"
"Wait for a request to come in"

Security/Bug Bounty:

"Generate an SSRF payload to test for blind vulnerabilities"
"Create XSS callback payloads to detect blind XSS attacks"
"Make me a canary token to detect if someone accesses a URL"

Email Automation:

"Create a temp email and wait for a password reset link"
"Monitor this webhook for emails and extract all links from them"
"Give me 3 temporary emails at once" (batch creation)

API Testing:

"Create a webhook that returns a 404 error with a custom message"
"Make a webhook with CORS enabled that waits 5 seconds before responding"
"Send 10 different test requests to a webhook and show me all the captured data"

Real-time Monitoring:

"Create a webhook and wait for any HTTP request to arrive"
"Monitor for DNS lookups to detect if a server is making DNS queries"
"Search all requests for ones containing 'password' in the body"

Data Analysis:

"Export all captured webhook requests to JSON format"
"Show me statistics on requests received in the last hour"
"Filter and show only POST requests with specific headers"

Creative/Practical:

"Create a webhook that pretends to be a Stripe payment API"
"Make a fake login endpoint that captures credentials (for pentesting)"
"Set up an email inbox that auto-extracts verification codes"

Canary Tokens

"Create a canary URL to track document access"
"Generate a DNS canary for the config file"
"Set up an email tracker pixel"

Tools Reference

Webhook Management

ToolDescription
create_webhookStart here: disposable URL, temp email, and DNS for sign-up or callbacks
create_webhook_with_configCreate with custom response, status, CORS, timeout
get_webhook_urlGet the full URL for a webhook token
get_webhook_emailTemp inbox {token}@email.webhook.site for sign-up / verify / magic-link / reset
get_webhook_dnsGet the DNS subdomain for a webhook
get_webhook_infoGet webhook settings and statistics
update_webhookModify webhook configuration
delete_webhookDelete a webhook endpoint

Request Handling

ToolDescription
send_to_webhookSend JSON data to a webhook
get_webhook_requestsList all captured requests
search_requestsSearch with filters (method, content, date)
get_latest_requestGet the most recent captured request
delete_requestDelete a specific request
delete_all_requestsBulk delete with filters

Real-Time Waiting

ToolDescription
wait_for_requestWait for a new HTTP request (polling, 1-120s). Set return_existing to reuse old traffic.
wait_for_emailAfter sign-up: wait for verify / magic-link / reset mail, links, and OTP codes
follow_email_linkOpen a captured verify / magic / reset URL and return the page preview

Bug Bounty / Security

ToolDescription
generate_ssrf_payloadCreate SSRF test payloads (HTTP, DNS, IP-based)
generate_xss_callbackCreate XSS callback payloads with cookie/DOM capture
generate_canary_tokenCreate trackable URLs, DNS, or email canaries
check_for_callbacksQuick check for OOB callbacks
extract_links_from_requestPull confirm / reset / magic-link URLs from a captured email or HTTP body

Batch & Utility

ToolDescription
send_multiple_requestsSend batch of requests for load testing
export_webhook_dataExport all requests to JSON

Examples

Sign up on a website

  1. create_webhook — get email ({token}@email.webhook.site)
  2. Use that address on the site (sign-up, verify, magic link, or password reset)
  3. wait_for_email — receive the message, confirm / login / reset URLs, and any OTP
  4. follow_email_link to open a verify link, or type verification_codes on the site

If you already have a token, get_webhook_email returns the same inbox.

Create a Webhook

// Response from create_webhook
{
  "token": "abc123-def456-...",
  "url": "https://webhook.site/abc123-def456-...",
  "email": "abc123-def456-...@email.webhook.site",
  "dns": "abc123-def456-....dnshook.site"
}

Wait for Password Reset Email

// Response from wait_for_email
{
  "email_received": true,
  "subject": "Password Reset Request",
  "from": "noreply@example.com",
  "auth_links": ["https://example.com/reset?token=xyz789"],
  "verification_codes": ["847291"]
}

SSRF Testing Payload

// Response from generate_ssrf_payload
{
  "payloads": {
    "http": "https://webhook.site/token?id=ssrf-test",
    "dns": "ssrf-test.token.dnshook.site",
    "ip_decimal": "http://2130706433/token",
    "ip_hex": "http://0x7f000001/token"
  }
}

Each Webhook Token Provides

EndpointFormatUse Case
HTTP URLhttps://webhook.site/{token}Capture HTTP/HTTPS requests
Subdomainhttps://{token}.webhook.siteAlternative URL format
Email{token}@email.webhook.siteCapture incoming emails
DNS{token}.dnshook.siteCapture DNS lookups

Architecture

webhook-mcp-server/
├── server.py              # MCPServer entry point + lifespan
├── handlers/              # Typed @mcp.tool() registrations
├── services/              # Business logic
│   ├── webhook_service.py # Webhook CRUD
│   ├── request_service.py # Request management
│   └── bugbounty_service.py # Security payloads
├── models/                # Config / filter / result types
└── utils/                 # HTTP client, logging, validation

Key Features

  • Async Architecture - Non-blocking I/O for optimal performance
  • Retry Logic - Exponential backoff for transient failures
  • Input Validation - UUID validation, parameter sanitization
  • Structured Logging - JSON logs for debugging and monitoring
  • Type Safety - Full type hints throughout

Development

Setup

git clone https://github.com/zebbern/webhook-mcp-server.git
cd webhook-mcp-server
pip install -e ".[dev]"

Run Tests

# Offline unit tests (default for CI)
pytest -m "not live" -v

# Live webhook.site tests
pytest -m live -v

Run Locally

python server.py

Requirements

  • Python 3.10+
  • mcp >= 2.0.0
  • httpx >= 0.25.0

Changelog

See CHANGELOG.md for version history.


Contributing

Contributions are welcome! Here's how you can help:

  1. Report bugs - Open an issue describing the problem
  2. Suggest features - Open an issue with your idea
  3. Submit PRs - Fork the repo and submit a pull request

Development Setup

git clone https://github.com/zebbern/webhook-mcp-server.git
cd webhook-mcp-server
pip install -e ".[dev]"
pytest -m "not live" -v

Guidelines

  • Follow existing code style
  • Add tests for new features
  • Update documentation as needed
  • Keep PRs focused on a single change

Credits

This project is not affiliated with or endorsed by webhook.site

Links


Made with ❤️ for the MCP community

Reviews

No reviews yet

Be the first to review this server!