← webhook-studio.com

INDIVIDUAL MCP TOOL

diff_schema

Compare two versions of a learned schema and get exactly which fields were added, removed or changed type, each flagged as breaking or not.

webhook-studio.comnone authenticationAvailability not checked

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

webhook-studio.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-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.
  • list_buckets — List your webhook endpoints.
  • 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.