Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
REMITTANCES_API_BASENoBase URL of the Remittances API. Defaults to https://remittances.mx. Set to another deployment, e.g. http://localhost:3000.https://remittances.mx

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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_coverageA

Coverage of the US-Mexico remittances dataset: first and last quarter available, state and municipality counts, sources, and the list of API endpoints. Call this first to learn which periods can be requested.

get_national_totalsA

Total remittances received by Mexico per period, in USD. Use freq=quarterly for the quarterly series or freq=yearly for annual totals (the most recent year may be partial).

get_mexico_statesA

Remittances received by each of the 32 Mexican states for one period, ranked by amount. Pass a year for the annual total, or a year plus quarter (Q1-Q4) for one quarter.

get_mexico_state_timeseriesA

Full remittance time series for one Mexican state (or every state when state is omitted). Use the exact state name from get_mexico_states, e.g. "Michoacán de Ocampo".

get_mexico_municipalitiesA

Remittances received by Mexican municipality for one year, ranked by amount. Filter to one state with state, and page through results with limit and offset. Municipal data is annual only.

get_us_statesB

Remittances sent from each US state for one period, with the Mexican-born population of that state. The US-origin series lags the Mexican series by a quarter or two.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct geographic level or query mode: coverage metadata, national totals, state period rankings, state time series, municipality rankings, and US state rankings. There is no meaningful overlap between them, and the descriptions clearly differentiate one-period snapshots from time series.

Naming Consistency5/5

All tools follow the same get_<domain>_<resource> pattern with snake_case and a consistent verb prefix. Names like get_mexico_states, get_mexico_state_timeseries, and get_us_states are predictable and readable.

Tool Count5/5

Six tools is a well-scoped size for a remittances dataset API. Each tool covers a meaningful queryable view without redundancy or bloat.

Completeness5/5

The tool set covers the dataset's major queryable dimensions: national totals, Mexican states, Mexican state time series, municipalities, US states, and coverage metadata. This gives agents a complete picture of the available data with no obvious dead ends.