Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
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-studio]
url = "https://webhook-studio.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"webhook-studio": {
"type": "http",
"url": "https://webhook-studio.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: webhook-studio
Remote MCP URL: https://webhook-studio.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-studio": {
"url": "https://webhook-studio.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"webhook-studio": {
"type": "http",
"url": "https://webhook-studio.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "webhook-studio",
"transport": "streamable-http",
"url": "https://webhook-studio.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
create_bucket— Provision a new webhook endpoint (a "bucket") that captures incoming HTTP requests.get_bucket— Fetch one webhook endpoint by id, including its url and inbox_url.delete_bucket— Permanently delete a webhook endpoint and its captured events.latest_event— Get the single most recent event captured by a bucket, optionally filtered by provider and event type.list_events— List events captured by a bucket, newest first, with composable filters: since/until (ISO 8601 or YYYY-MM-DD), provider, type, method, signature_valid, and q (case-insensitive substring over body, content type, method, type and labels).get_event— Fetch one captured event by id with its full headers, body, signature verification result (and failure reason), and every outbound delivery attempt.wait_for_event— Block until the next matching event arrives on a bucket, or until the timeout.replay_event— Re-send a captured event to any URL — the test runner for a handler you just wrote.