Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

Ping Webhook

ping_webhook

Send a test PING event to a webhook to verify it is reachable. Use it to confirm webhook connectivity before relying on event delivery.

Instructions

Send a test PING event to a webhook to verify it is reachable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
webhook_idYesThe webhook to send a PING event to.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full disclosure burden. It usefully reveals the nature of the operation by calling the event a 'test PING' (implying it is diagnostic rather than a real delivery), but it says nothing about side effects, rate limits, whether the ping is logged, or what a failure implies.

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?

One sentence, front-loaded with the action and ending with the purpose; every clause earns its place and there is no filler.

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 single-parameter diagnostic tool with an output schema covering the response, the description is essentially complete about what the tool does. It could add a note on the return semantics of a failed ping or any rate/duplicate-send constraints, which is the only gap.

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?

Schema description coverage is 100% and the single parameter is already documented as 'The webhook to send a PING event to.' The description adds no format, identifier, or validation detail beyond that, so the schema does the heavy lifting and the baseline of 3 applies.

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

Purpose4/5

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

The description uses a specific verb and resource ('Send a test PING event to a webhook'), making the action unambiguous. It implicitly separates itself from the sibling `ping` (which pings something other than a webhook) and from `get_webhook`, but it never names an alternative to make the distinction explicit.

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?

'...to verify it is reachable' states the concrete situation in which the tool is the right choice, which is clear usage context. It stops short of naming alternatives (e.g. list_webhook_logs, get_webhook) or stating when not to use it, so it does not reach a 5.

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