Webhook Studio
Server Details
Keyless webhook endpoints: capture, wait, replay, forward, and generate types from real traffic.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
17 toolsconfigure_verificationInspect
Turn on HMAC signature verification for a bucket using the provider's own signing secret (e.g. Stripe's whsec_). This is how you finish a "verified webhook" integration end to end. Set secret to the provider secret and hmac_enabled:true in the same call; the signature scheme is auto-detected from the header shape.
| Name | Required | Description | Default |
|---|---|---|---|
| secret | No | The provider's signing secret (≥16 chars). | |
| bucket_id | Yes | The endpoint id. | |
| on_failure | No | What to do with a failed signature. | |
| header_name | No | Signature header to read (auto-detected if omitted). | |
| hmac_enabled | No | Enable verification. | |
| tolerance_seconds | No | Max timestamp skew allowed, in seconds. |
create_bucketInspect
Provision a new webhook endpoint (a "bucket") that captures incoming HTTP requests. Returns its id, public ingest url to point a provider at, inbox_url (the live human view to hand back), and signing secret. Pass external_ref — your own stable name like "acme-api:stripe" — so you can re-find this exact bucket later with list_buckets after losing context.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Human label for the bucket. | |
| environment | No | Deployment environment. | |
| external_ref | No | Your own stable identifier (unique per account) for idempotent re-provisioning and re-finding. |
delete_bucketInspect
Permanently delete a webhook endpoint and its captured events.
| Name | Required | Description | Default |
|---|---|---|---|
| bucket_id | Yes | The endpoint id. |
diff_schemaInspect
Compare two versions of a learned schema and get exactly which fields were added, removed or changed type, each flagged as breaking or not. This is the "why did my handler start failing" answer, produced without reading a single payload. from defaults to the version before to.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Target version number, or "current". | |
| from | No | Baseline version number (defaults to the one before "to"). | |
| schema_id | Yes | The schema id. |
find_correlation_keysInspect
List the correlation-key candidates for a learned schema — the fields that look like identifiers (e.g. data.object.id), ranked by how consistently they appear. These are the fields to group events by when reconstructing a lifecycle (a Stripe payment_intent across created -> succeeded, a GitHub PR across its events). Derived from real traffic, so it reflects what THIS account actually receives.
| Name | Required | Description | Default |
|---|---|---|---|
| version | No | Version number, or "current" (the default). | |
| schema_id | Yes | The schema id. |
forward_bucketInspect
Set up standing forwarding from a bucket to a URL. Pass forward_all:true to forward every event, or condition_tree to forward only matching events (same AND/OR condition grammar the routing engine uses). Creates the destination and routing rule in one call.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Destination URL to forward to. | |
| name | No | Optional label for the destination. | |
| bucket_id | Yes | The endpoint id. | |
| rule_name | No | Optional name for the routing rule when using condition_tree. | |
| forward_all | No | Forward every event unconditionally. | |
| condition_tree | No | A condition tree (AND/OR of field comparisons) to forward only matching events. Mutually exclusive with forward_all. |
generate_typesInspect
Generate types, a runtime validator, or a full handler from a learned schema — the payoff of the knowledge layer. Everything is derived from the payloads this account ACTUALLY received, with genuinely-optional fields marked optional, instead of a plausible-but-wrong guess from a model's memory of the provider docs. Pass lang for a bare type (typescript / json-schema / zod), or framework (next / express) for a ready-to-paste handler that validates and hands back a fully-typed event.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Output format for a bare type. | |
| version | No | Version number, or "current" (the default). | |
| framework | No | Return a ready-to-paste handler scaffold instead of a bare type. Overrides lang. | |
| schema_id | Yes | The schema id. |
get_bucketInspect
Fetch one webhook endpoint by id, including its url and inbox_url.
| Name | Required | Description | Default |
|---|---|---|---|
| bucket_id | Yes | The endpoint id. |
get_eventInspect
Fetch one captured event by id with its full headers, body, signature verification result (and failure reason), and every outbound delivery attempt. This is how you find out whether your forward actually reached its target and what came back.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | The event id. |
get_schemaInspect
Fetch one learned schema with every field, its type, whether it is optional, and how often it actually appears — the real shape of the payload, derived from what this account received rather than guessed from training data.
| Name | Required | Description | Default |
|---|---|---|---|
| version | No | Version number, or "current" (the default). | |
| schema_id | Yes | The schema id. |
latest_eventInspect
Get the single most recent event captured by a bucket, optionally filtered by provider and event type. Returns one event with its headers, body and delivery results — the one-shot answer to "what did Stripe last send me". 404 if nothing matches, so you never index into an empty list.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | The provider's own event name, matched exactly (e.g. payment_intent.succeeded). | |
| provider | No | Filter to a provider attributed at ingest (e.g. stripe, github). | |
| bucket_id | Yes | The endpoint id. |
list_bucketsInspect
List your webhook endpoints. Pass external_ref to fetch the specific bucket you created earlier under that name — this is how you re-anchor after losing the conversation, since you never need to have stored the bucket id.
| Name | Required | Description | Default |
|---|---|---|---|
| external_ref | No | Return only the bucket with this exact external_ref. |
list_deliveriesInspect
List outbound delivery attempts for a bucket, newest first, with the full request and response of each. Pass success:false to see only failures — the direct answer to "which of my forwards are broken and why".
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max deliveries to return (1–100, default 20). | |
| cursor | No | Pagination cursor from a previous response. | |
| source | No | Delivery source. | |
| success | No | Filter to succeeded (true) or failed (false) deliveries. | |
| bucket_id | Yes | The endpoint id. |
list_eventsInspect
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). Use cursor for the next page.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Case-insensitive substring search over body/content-type/method/type/labels. | |
| type | No | The provider's own event name, matched exactly. | |
| limit | No | Max events to return (1–100, default 20). | |
| since | No | Only events at or after this time (ISO 8601 or YYYY-MM-DD). | |
| until | No | Only events at or before this time. | |
| cursor | No | Pagination cursor from a previous response. | |
| method | No | HTTP method (GET, POST, ...). | |
| provider | No | Filter to a provider (e.g. stripe, github). | |
| bucket_id | Yes | The endpoint id. | |
| signature_valid | No | Only events whose signature verification passed/failed. |
list_schemasInspect
List the payload schemas Webhook Studio has learned from this account's real traffic, optionally filtered by provider and event_type. These outlive the payloads they were learned from, so this answers "what shapes do I know about" even after old events are gone. Start here to discover what you can generate types or diffs for.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Filter to a provider. | |
| event_type | No | The provider's own event name. |
replay_eventInspect
Re-send a captured event to any URL — the test runner for a handler you just wrote. preserve_headers defaults to true so the original signature header (e.g. Stripe-Signature) arrives intact. If you changed the body or the receiver verifies with a different secret, pass resign_with (the dev's own signing secret) so the payload is re-signed and their verification code passes unmodified. Returns the response status, latency and body.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Destination URL to send it to. | |
| body | No | Replacement request body (defaults to the captured body). | |
| headers | No | Header overrides layered on top of the preserved set. | |
| event_id | Yes | The event id to replay. | |
| resign_with | No | Signing secret to re-sign the payload with (≥16 chars). | |
| preserve_headers | No | Replay the captured headers verbatim (default true). | |
| signature_header | No | Header name for resign_with (default x-signature). |
wait_for_eventInspect
Block until the next matching event arrives on a bucket, or until the timeout. Use this to turn "go click Send test webhook in Stripe" into a synchronous step: call it, tell the human to trigger the event, and it returns as soon as one arrives. Filters (provider, type) mean unrelated traffic does not wake it. Returns the event, or nothing if it times out.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Only resolve on this event type. | |
| timeout | No | Seconds to wait (1–55, default 30). | |
| provider | No | Only resolve on an event from this provider. | |
| bucket_id | Yes | The endpoint id. |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!