Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

Create Webhook

create_webhook

Register a publicly reachable HTTPS webhook URL to receive Up Banking transaction events, and capture the one-time secret key used to verify delivery signatures.

Instructions

Register a webhook for transaction events.

The response contains secret_key, which is returned only once — store it now to verify the X-Up-Authenticity-Signature header on incoming deliveries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesPublicly reachable HTTPS URL to deliver events to.
descriptionNoOptional label, max 64 characters.

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
Behavior4/5

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

With no annotations, the description carries the full behavioral burden, and it discloses a high-value non-obvious trait: secret_key is returned only once and must be stored immediately. It also names the verification header (X-Up-Authenticity-Signature), which tells the agent what the secret is for. It stops short of stating auth requirements, duplicate-URL behavior, or retry 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?

Two sentences, no filler, with the core action front-loaded and the one-time secret warning immediately after. Every clause carries information the agent cannot get elsewhere.

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 two-parameter creation tool with full schema coverage and an output schema, the description covers the critical operational fact (one-time secret) that a schema cannot express. It is nearly complete; a note on authorization or duplicate registrations would close the remaining gap given the absence of annotations.

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%, so 'url' (publicly reachable HTTPS) and the optional 64-character 'description' are fully documented in the schema. The description adds no parameter-level detail beyond that, so the baseline 3 applies.

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?

States a specific verb and resource ('Register a webhook') plus the event scope ('for transaction events'), which cleanly separates it from the list/get/delete/ping webhook siblings. An agent needs no schema inspection to know this creates a new subscription.

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

Usage Guidelines2/5

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

There is no explicit when-to-use guidance, no prerequisites (e.g. required plan or permissions), and no mention of when to prefer this over ping_webhook or list_webhooks as a next step. The only usage-adjacent content concerns verifying deliveries after the fact, not selecting this tool.

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