Skip to main content
Glama

create_watch

Create a price watch (tripwire): fires when the best live fee-adjusted price per GPU-hour matching gpu (and optional offer_class) drops to or under max_price_per_gpu_hr. Checked every poll (~5 min). Returns the watch with its id — the id is the only key; poll it with watch_status, or give a public webhook_url to be POSTed on each trip. Watches re-arm when the price climbs 2% back over the line.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gpuYes
offer_classNo
webhook_urlNo
max_price_per_gpu_hrYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden. It discloses the trigger condition, the 5-minute polling interval, the re-arm behavior, the returned id, and webhook semantics. It also hints at the fee-adjusted pricing. Nothing is hidden, and there's no contradiction.

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

Conciseness4/5

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

The description is dense but not wasteful. It front-loads the core trigger and then adds re-arm and webhook details. It reads as a single paragraph but logically flows from purpose to operational details. Slight room for bullet-point structuring, but it's appropriately sized.

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 create operation with no output schema and no annotations, the description covers the return value (watch with id), polling instructions, webhook behavior, and re-arm logic. It doesn't mention error cases or rate limits, but these are not essential for a basic create call. It's complete enough for an agent to use it correctly.

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

Parameters4/5

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

Schema coverage is 0%, so the description must compensate. It explains gpu, offer_class (optional), max_price_per_gpu_hr, and webhook_url semantics through context, even though it doesn't run through each parameter explicitly. It adds meaning beyond the schema by describing the matching logic and the role of each parameter in the tripwire.

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?

The description states a specific verb (create) and resource (price watch/tripwire) with a precise trigger condition. It clearly distinguishes from siblings like watch_status (which polls) and delete_watch (which removes). The behavior is unambiguous and self-contained.

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?

The description explains how the watch works (fires when price drops, re-arms on 2% climb) and mentions polling and webhook options. It implies when to use it (to monitor price thresholds) but doesn't explicitly contrast with alternatives like create_limit_order. Still, the context is clear enough for an agent to select it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.