pipehero
Server Details
Debug webhooks from your AI agent: inspect and replay captured webhooks on localhost.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipehero/pipehero-mcp
- GitHub Stars
- 0
Available Tools
7 toolsget_requestARead-onlyInspect
Get the full request and response (headers + body) of one captured webhook by id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare this as a safe read operation (readOnlyHint=true, destructiveHint=false). The description adds behavioral context by specifying exactly what is returned (full request and response including headers and body), which goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tightly packed sentence that immediately states the action, resource, and scope. No wasted words; every part contributes to understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with no output schema, the description adequately conveys the return value (full request/response with headers and body) and the uniqueness (one webhook by id). It does not explain how to obtain the id or the subdomain, but given sibling list_requests, this is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meaning. It only mentions 'by id' but does not explain the format or role of 'id' or 'subdomain'. This leaves the agent without enough semantic detail for the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action (Get), the specific resource (full request and response with headers and body), and the scope (one captured webhook by id). This differentiates it from sibling tools like list_requests, which lists multiple items, and replay_request, which resends a webhook.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when you need a single captured webhook's full details by its id. It does not explicitly mention alternatives or exclusions, but the context is clear enough that an agent can infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_requestsARead-onlyInspect
List recent webhooks/requests captured for a tunnel. Returns id, method, path, status and bodies.
| Name | Required | Description | Default |
|---|---|---|---|
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description adds behavioral detail by specifying the returned fields (id, method, path, status, bodies) and the 'recent' qualifier, which sets expectations about scope and output.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no redundancy. It efficiently conveys purpose and return fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, scope, and return fields. With no output schema and only one parameter, this is largely sufficient. It could mention pagination or limits, but 'recent' hints at a bounded set.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description doesn't explicitly link the 'subdomain' parameter to the tunnel mentioned. However, the phrase 'for a tunnel' implies the subdomain identifies which tunnel, providing some semantic context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists recent webhooks/requests captured for a tunnel, specifying the action (list) and the resource (captured requests). It also lists the return fields, distinguishing it from sibling tools like get_request (single) and list_tunnels.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: use it to list recent captured requests for a tunnel. It doesn't explicitly mention alternatives or exclusions, but the purpose is unambiguous enough to guide tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tunnelsARead-onlyInspect
List the user's Pipehero tunnels and whether each is currently online.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds the scoping to the user's own tunnels and the 'currently online' status, giving modest extra context beyond the structured annotations, though no rate limits or auth details are disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tightly written sentence that front-loads the action and resource, earning its place with zero wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, parameterless, read-only list tool, the description adequately conveys what the tool does and what the user gets (tunnels plus online status). The lack of an output schema or pagination details is not a major gap given the tool's simplicity and the annotation coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubric. There is no parameter information needed, and the description correctly implies that no inputs are required to list tunnels.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and identifies the exact resource ('the user's Pipehero tunnels') plus the output detail ('whether each is currently online'). This clearly distinguishes it from the sibling request/webhook tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes clear it is for listing the user's tunnels and their online status, providing unmistakable context for use. It doesn't explicitly name alternatives or exclusions, but the sibling tools are all request-focused, so the usage context is evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
replay_requestADestructiveInspect
Replay a captured webhook to the user's localhost (the tunnel CLI must be running).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructive and non-idempotent behavior, so the bar is lower. The description adds the destination ('user's localhost') and the required tunnel CLI, which are not in the annotations. It doesn't detail potential side effects, but the key prerequisites are covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence with no redundant information. It front-loads the action and includes a relevant parenthetical about the CLI requirement.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose and a prerequisite, making it minimally usable. However, it lacks detail on parameter meanings (id/subdomain) and doesn't describe expected outcomes or side effects, especially given the destructiveHint. It's adequate for a simple tool but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has zero description coverage, and the description does not elaborate on the 'id' or 'subdomain' parameters. While one could infer that id identifies the webhook and subdomain the tunnel, it's not explicitly stated. This is a significant gap given the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: replaying a captured webhook to the user's localhost. It distinguishes itself from siblings like list_requests and send_test_webhook by specifying the replay action and destination. The prerequisite about the tunnel CLI adds useful scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: the tool is for replaying a captured webhook to localhost, and it notes a key prerequisite ('tunnel CLI must be running'). However, it does not explicitly mention alternatives or exclusions, such as comparing to send_test_webhook for new webhooks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_test_webhookADestructiveInspect
Send a generated test webhook to the user's localhost (the tunnel CLI must be running). Provide a provider (stripe, github, shopify, clerk, slack, resend, paddle, polar, lemonsqueezy) and optional event for a realistic sample payload, or pass a custom JSON body. Pro plan required.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Custom JSON body (overrides the template) | |
| event | No | ||
| provider | Yes | ||
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructiveHint=true and openWorldHint=true, so the description adds value by disclosing the localhost target, the running tunnel CLI prerequisite, and the Pro plan requirement. It doesn't elaborate on side effects, but with annotations covering the safety profile, this additional context is meaningful and not contradictory.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences. The first sentence states purpose and a key prerequisite; the second covers parameter options. No redundant words, and it is front-loaded with the action verb. Every sentence contributes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers invocation context (tunnel, Pro plan), parameter options (provider list, event, body), and the target. However, it omits any description of the subdomain parameter and does not mention response format or error behavior, though no output schema exists. For a moderately complex tool, it is mostly complete but not fully.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is low (25%), so the description compensates by enumerating valid provider values, explaining that 'event' provides a realistic sample payload, and clarifying 'body' as a custom override. However, the required 'subdomain' parameter is entirely unexplained in both schema and description, which is a significant semantic gap for a required field.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Send a generated test webhook to the user's localhost,' which is a specific verb+resource+target. It differentiates from siblings like get_request, list_requests, and replay_request by emphasizing generation and sending of a test webhook. The provider list adds concrete scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context by stating the prerequisite ('the tunnel CLI must be running') and explaining two usage modes: provider/event for realistic payloads or custom body. It doesn't explicitly exclude alternatives or name when not to use it, but the context is sufficient for an agent to decide when this tool is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_long_requestsAIdempotentInspect
Opt a tunnel into a 120-second ingress timeout instead of the 30-second default — for tool calls that legitimately run long, e.g. an MCP server exposed through the tunnel. Persists on the tunnel; pass enabled: false to revert to the 30-second default.
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | Yes | ||
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint=false, destructiveHint=false, idempotentHint=true), the description discloses that the change 'Persists on the tunnel' and that it can be reverted by passing enabled:false. It also explains the effect (extends timeout from 30 to 120 seconds), adding meaningful behavioral context that annotations do not provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the action, and includes a concrete example and revert instruction. Every sentence adds value, with no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter mutation with no output schema, the description adequately covers the tool's purpose, effect, persistence, and how to revert. It lacks an explicit statement about the return value, but given the simplicity and the presence of sibling context, this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains the 'enabled' parameter by noting that false reverts the timeout, and implies that 'subdomain' identifies the target tunnel. However, subdomain is not explicitly described, and the exact relationship between the parameters and the timeout change is only partially filled in.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb phrase 'Opt a tunnel into a 120-second ingress timeout' and clearly identifies the resource (tunnel) and the change (timeout increase). It distinguishes from sibling tools which all deal with requests/webhooks rather than tunnel configuration, so there is no ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use: 'for tool calls that legitimately run long, e.g. an MCP server exposed through the tunnel.' It also explains how to revert via 'pass enabled: false to revert to the 30-second default.' While it doesn't name alternative tools or give negative exclusions, the context is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_ws_passthroughAIdempotentInspect
Opt a tunnel into WebSocket passthrough, so an application-level WebSocket connection (e.g. a mobile/web app's own realtime feature) can be relayed to your localhost. Pro/Team plan required to enable; pass enabled: false to disable on any plan.
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | Yes | ||
| subdomain | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare idempotentHint=true and destructiveHint=false, so the description adds value with plan restrictions and disable behavior. It does not contradict annotations and gives practical context beyond the structured data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loads the primary action, and includes only essential details (plan requirement and how to disable). There is no redundant language, making it highly concise and efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple setter with two parameters and no output schema, the description covers core purpose and plan constraints but omits explanation of the subdomain parameter and any side effects or persistence details. This is adequate but not fully complete for a low-coverage schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for parameter meaning. It explains 'enabled' (with 'pass enabled: false') but fails to describe the 'subdomain' parameter, leaving a required parameter unexplained. This is a significant gap in a low-coverage situation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Opt a tunnel into WebSocket passthrough') and specifies the resource (a tunnel) and its purpose (relaying WebSocket connections to localhost). It effectively distinguishes from request-focused siblings by focusing on tunnel configuration, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context by mentioning the plan requirement ('Pro/Team plan required to enable') and how to disable ('pass enabled: false'), but it does not explicitly contrast with alternative tools or state when not to use it. This is adequate guidance for when to apply the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Added
set_ws_passthrough
1 tool update
- Added
set_long_requests
1 tool update
- Added
send_test_webhook
4 tool updates
- First observed
get_request - First observed
list_requests - First observed
list_tunnels - First observed
replay_request
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Connectors
Instant no-signup webhook & HTTP-request inspector for testing webhooks and agent tool-callbacks.
Receive, inspect, replay and deliver webhooks — with signature verification and agent triggers.
Anonymous webhook capture, inspection, waiting, and response configuration for AI agents.
A webhook inbox for agents: one call returns a live URL. Mock, verify, inspect and replay.
Related MCP Servers
- AlicenseAqualityCmaintenanceCaptures incoming webhook/HTTP requests and lets AI assistants inspect, wait for, and replay them to debug webhook integrations.6MIT
- AlicenseAqualityDmaintenanceEnables AI agents to create disposable webhook URLs, capture incoming HTTP requests, inspect headers and bodies, and replay them against local or remote endpoints, streamlining the webhook handler development loop.515MIT
- AlicenseAqualityDmaintenanceWebhook management and testing tools for AI agents. Provides tools for sending, validating, generating, and debugging webhooks.553MIT
- FlicenseNot gradedqualityBmaintenanceWebhook management and debugging. Validate signatures, log events, replay, and analyze webhook traffic.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct purpose: retrieving a specific request, listing requests, listing tunnels, replaying a captured webhook, sending a test webhook, and two separate configuration toggles. No semantic overlap exists, so an agent can reliably choose the right tool.
All tools follow a consistent verb_noun pattern in snake_case (e.g., get_request, list_tunnels, set_long_requests). The naming is uniform and predictable, making it easy to infer functionality from the name alone.
With 7 tools, the server is well-scoped for webhook tunnel management. Each tool addresses a clear need without redundancy or bloat, striking a good balance between functionality and simplicity.
The surface covers the core lifecycle: viewing tunnels, inspecting webhooks, replaying requests, generating test events, and configuring timeout/WebSocket behavior. Minor gaps include lack of tunnel creation/deletion or request cleanup, but these appear to be handled externally (via CLI) and do not hinder primary workflows.