List exchange houses
list_housesAll Uruguayan exchange houses (casas de cambio) tracked, with display name, website, and departments served.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
list_housesAll Uruguayan exchange houses (casas de cambio) tracked, with display name, website, and departments served.
| 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?
There are no annotations, so the description carries the behavioral disclosure burden. It conveys the scope ('all ... tracked') and the output fields, which is useful, but it does not explicitly mention that the operation is read-only, whether it is paginated, or any other behavioral constraints. For a simple list operation this is adequate but not rich.
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, front-loaded sentence that states the resource, scope, and return fields without any wasted words. Every part adds useful information.
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 parameterless listing tool with no output schema, the description is complete: it identifies the exact set of entities returned and the key attributes included. An agent can invoke it correctly without further clarification.
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 description does not need to explain parameter meaning. The baseline of 4 applies here; there is nothing missing in terms of parameter semantics.
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 clearly states the operation ('list'), the resource ('all Uruguayan exchange houses / casas de cambio'), and the return fields (display name, website, departments served). This distinguishes it from siblings like get_rates or best_house, which deal with rates and rankings rather than the full registry.
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 gives no guidance on when to use this tool versus alternatives such as best_house or get_rates. It implies a generic listing use case but does not explicitly state when it is the right choice or when a sibling should be preferred.
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.
Most tools cover clearly distinct tasks: conversion, historical data, news, summaries, and house listings. However, best_house overlaps with get_rates since get_rates already identifies the best buy/sell house, though best_house's narrower focus helps reduce ambiguity.
The tool names generally follow a readable snake_case style, with many using a get_* prefix for data retrieval. A few names like best_house, convert, and daily_summary deviate from that pattern, but the naming remains predictable and easy to understand.
Seven tools is a well-scoped size for a specialized Uruguayan exchange-rate server. Each tool contributes a distinct capability without unnecessary redundancy or bloat.
The surface covers the core domain well: current rates, best house selection, currency conversion, historical evolution, house listings, news, and AI-generated summaries. There are no obvious dead ends or missing operations for the server's stated purpose.