mcp-trm-colombia
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_trmA | Official USD/COP rate in force on a date. Args: date: ISO date (YYYY-MM-DD). Defaults to today in Bogota. A single rate often covers several days — the one published on Friday usually runs through Sunday — so the answer includes its validity window. |
| convertA | Convert an amount between USD and COP at the official rate. Args:
amount: How much to convert. Must be zero or positive.
currency: The currency of |
| trm_seriesA | Rates over a period, with min, max, average and the change across it. Args: start_date: ISO date (YYYY-MM-DD), inclusive. end_date: ISO date (YYYY-MM-DD), inclusive. Max 5 years apart. Returns the summary plus the raw series, so the caller can chart it without a second round trip. |
| todayA | Today's date in Colombia (UTC-5), and today's rate. Exists because models routinely get "today" wrong, and every other tool here defaults to it. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Most tools are clearly distinct: get_trm fetches a single rate, convert performs currency conversion, and trm_series returns period statistics. There is mild overlap between get_trm and today, since both can supply today's rate, but the descriptions clarify that today is a convenience wrapper for date anchoring.
The names are readable and lowercase, but they do not follow a single pattern: get_trm uses verb_noun, convert is a bare verb, trm_series is a noun phrase, and today is a standalone time reference. This mixed style is understandable but not fully consistent.
Four tools is well-scoped for a specialized TRM server. Each tool addresses a distinct need: single rate lookup, conversion, historical series analysis, and current date context, with no redundant bulk.
The server covers the core domain completely: fetching current or historical rates, converting between USD and COP, and obtaining series summaries with statistics. The inclusion of today's date fills a practical gap, and there are no obvious missing operations for this narrow purpose.