list_tunnels
List the user's Pipehero tunnels and whether each is currently online.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List the user's Pipehero tunnels and whether each is currently online.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
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.
Add one secure layer between your agents and this server.
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.