← webhook-toolkit.com

INDIVIDUAL MCP TOOL

list_webhook_urls

List the webhook URLs of the account behind the API key (requires an API key).

webhook-toolkit.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://webhook-toolkit.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for list_webhook_urls and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent server

webhook-toolkit.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.webhook-toolkit]
url = "https://webhook-toolkit.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "webhook-toolkit": {
      "type": "http",
      "url": "https://webhook-toolkit.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: webhook-toolkit
Remote MCP URL: https://webhook-toolkit.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "webhook-toolkit": {
      "url": "https://webhook-toolkit.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "webhook-toolkit": {
      "type": "http",
      "url": "https://webhook-toolkit.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "webhook-toolkit",
  "transport": "streamable-http",
  "url": "https://webhook-toolkit.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • create_webhook_url — Create a public HTTPS URL that captures every request sent to it (any method, any sub-path).
  • wait_for_webhook — Block until the next request reaches a webhook URL (or the timeout elapses), then return it in full: method, path, headers, body, detected provider and event.
  • list_webhook_requests — List the most recent requests captured by a webhook URL, newest first (summaries; use get_webhook_request for one full request).
  • get_webhook_request — Return one captured request in full (headers, raw body, detected provider/event).
  • set_webhook_response — Choose what the webhook URL answers to callers (status code, body, content type) — e.
  • replay_webhook_request — Re-send a captured request (same method, headers and raw body) to a PUBLIC URL and return the target's response.
  • sign_webhook_payload — Build a webhook body with a VALID signature header for a provider, to test a handler's signature verification without triggering a real event.
  • verify_webhook_signature — Check whether a webhook signature is valid for a raw body and a secret, and diagnose why it fails (wrong secret, whitespace, re-serialized JSON body, expired timestamp, wrong URL for Twilio).