Skip to main content
Glama
zebbern

Webhook.site MCP Server

by zebbern

search_requests

Search captured webhook requests by method, content, type, or date to find specific events.

Instructions

Search captured events by method, body text, headers, type, or date.

    Use when the user asks to find POSTs, a keyword, or only emails/DNS.
    Examples: query='method:POST', query='content:verify', request_type='email'.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
date_toNo
sortingNonewest
date_fromNo
request_typeNo
webhook_tokenYesWebhook UUID returned by create_webhook

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed29 schema fields changedv2.2.2
    • addedInput schema / properties / date_from / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / date_from / default
      Added value: +null
    • removedInput schema / properties / date_from / description
      Removed value: -"Filter from date (format: yyyy-MM-dd HH:mm:ss)"
    • addedInput schema / properties / date_from / title
      Added value: +"Date From"
    • removedInput schema / properties / date_from / type
      Removed value: -"string"
    • addedInput schema / properties / date_to / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / date_to / default
      Added value: +null
    • removedInput schema / properties / date_to / description
      Removed value: -"Filter to date (format: yyyy-MM-dd HH:mm:ss)"
    • addedInput schema / properties / date_to / title
      Added value: +"Date To"
    • removedInput schema / properties / date_to / type
      Removed value: -"string"
    • removedInput schema / properties / limit / description
      Removed value: -"Maximum number of requests to retrieve"
    • addedInput schema / properties / limit / title
      Added value: +"Limit"
    • addedInput schema / properties / query / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / query / default
      Added value: +null
    • removedInput schema / properties / query / description
      Removed value: -"Additional search query (e.g., 'method:POST', 'content:foobar', 'headers.user-agent:Mozilla')"
    • addedInput schema / properties / query / title
      Added value: +"Query"
    • removedInput schema / properties / query / type
      Removed value: -"string"
    • addedInput schema / properties / request_type / anyOf
      Added value: +[
      +  {
      +    "enum": [
      +      "web",
      +      "email",
      +      "dns"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / request_type / default
      Added value: +null
    • removedInput schema / properties / request_type / description
      Removed value: -"Filter by request type: 'web' (HTTP requests), 'email', or 'dns'"
    • removedInput schema / properties / request_type / enum
      Removed value: -[
      -  "web",
      -  "email",
      -  "dns"
      -]
    • addedInput schema / properties / request_type / title
      Added value: +"Request Type"
    • removedInput schema / properties / request_type / type
      Removed value: -"string"
    • removedInput schema / properties / sorting / description
      Removed value: -"Sort order: 'newest' or 'oldest'"
    • addedInput schema / properties / sorting / title
      Added value: +"Sorting"
    • changedInput schema / properties / webhook_token / description
      Previous value: -"The webhook token (UUID) from webhook.site"New value: +"Webhook UUID returned by create_webhook"
    • addedInput schema / properties / webhook_token / title
      Added value: +"Webhook Token"
    • addedInput schema / title
      Added value: +"search_requestsArguments"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "title": "search_requestsDictOutput",
      +  "type": "object"
      +}
  2. Addedv2.0.3
  3. Removedv2.0.0
  4. First observedv2.1.3

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries full disclosure burden. It does reveal meaningful behavior—the query syntax (method:, content:) and request_type values—but omits basic semantics like the meaning of limit, sorting values, or whether the search is scoped to a single webhook (only implied via webhook_token). It's not misleading, but it leaves the agent guessing on the output shape and filter semantics.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three tight sentences: one for purpose, one for when-to-use, one with concrete examples. Every line earns its place with zero filler. The example block is scannable and immediately illustrative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter search tool with a query language, the description covers the primary use cases (find by method, keyword, type, date) and introduces the query DSL. An output schema exists, so return values needn't be specified. The main gap is absence of date-format and pagination/limit semantics, but the tool remains usable with defaults.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With only 14% schema description coverage, the description must compensate for 6 undocumented parameters. It helpfully decodes the query parameter syntax (method:, content:) and demonstrates request_type usage, but says nothing about date_from/date_to format, limit, or the sorting values beyond the 'newest' default. Partial compensation for a large documentation gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a specific verb+resource: 'Search captured events by method, body text, headers, type, or date.' The concrete examples (query='method:POST', query='content:verify', request_type='email') remove any ambiguity about what fields are searchable, cleanly distinguishing this from sibling retrieval tools like get_latest_request.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to reach for this tool: 'Use when the user asks to find POSTs, a keyword, or only emails/DNS.' This is clear, actionable when-to-use context. It doesn't name exclusions or point to alternatives like get_webhook_requests, but the trigger conditions are specific enough that an agent would rarely misfire.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zebbern/webhook-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server