Skip to main content
Glama
Vilgar

Rate-API MCP Server

by Vilgar

create_rate_alert

Monitor a currency pair and get notified by email or webhook when the exchange rate moves above or below a threshold you define.

Instructions

Create a rate alert that fires (by email and optional webhook) when a pair crosses a threshold. Requires Business plan or higher.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesTarget currency ISO code (e.g. EUR).
fromYesSource currency ISO code (e.g. USD).
directionYesFire when the rate goes above or below the threshold.
thresholdYesRate threshold (positive number).
notify_urlNoOptional public https URL to receive a signed webhook when the alert fires.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

TDQS

A3.7/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 burden of disclosing behavior. It does disclose the plan requirement and the alert delivery mechanism, but omits other relevant traits such as the response shape, whether repeated calls create duplicate alerts, or whether it consumes API quota. It is adequate but incomplete.

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?

The description is two sentences with no filler. The core purpose ('Create a rate alert') is front-loaded, followed by the condition and plan requirement. Every phrase earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no output schema and no annotations, the description should ideally mention what the call returns (e.g., alert ID) or how to verify creation. It covers the plan prerequisite and basic alert behavior, but the missing return-value information leaves an agent without full guidance. The schema handles parameter documentation, so this is mostly a functional-completeness 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?

The input schema already describes all five parameters with 100% coverage, so the baseline is 3. The description adds no extra parameter-level meaning; it references 'pair' and 'threshold' but does not elaborate on syntax, units, or formats beyond what the schema provides.

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 clearly states the tool creates a rate alert, including the notification mechanism (email and optional webhook) and the trigger condition (when a pair crosses a threshold). This distinguishes it from sibling tools like list_rate_alerts and delete_rate_alert, which are read/delete operations, and from rate querying tools like get_pair_rate.

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

Usage Guidelines3/5

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

The description provides useful context: it fires on threshold crossing and requires a Business plan or higher. However, it does not explicitly name alternatives or situations where one would prefer another tool, and does not offer when-not-to-use guidance. The usage is implied rather than direct.

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