Skip to main content
Glama

Meltema Weather

Server Details

Multi-model weather forecasts: point series, model scoreboard, and gridded fields. No auth.

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 5 of 5 tools scored. Lowest: 3.6/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: compare_models for multi-model comparison, describe_grid for grid metadata, list_runs for run times, list_sources for source enumeration, and point_forecast for single-point forecasts. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent snake_case convention with a verb_noun pattern (compare_models, describe_grid, list_runs, list_sources, point_forecast). 'point_forecast' is a slight deviation but still clear and fits the overall style.

Tool Count5/5

5 tools is well-scoped for a weather forecast server: covers discovery, metadata, point forecasts, and cross-model comparison. Neither too few nor too many, each tool earns its place.

Completeness4/5

The tool surface covers core operations: listing sources and runs, grid metadata, point forecasts, and model comparison. Minor gaps like area-based forecasts or direct data download are not essential for the stated purpose, but could be added.

Available Tools

5 tools
compare_modelsCompare models at a point (scoreboard)AInspect

Sample one variable at a point across many models and summarize per-time cross-model spread (min/max/mean/spread). Sources default to every live source carrying the variable; pass a comma-separated sources to pin the set. Canonical variable ids: t2m = 2 m air temperature (K), u10 = 10 m U wind component (m/s), v10 = 10 m V wind component (m/s), wind_speed = 10 m wind speed, derived hypot(u10, v10) (m/s), tp = total precipitation over the step (kg m-2, mm-equivalent), tcc = total cloud cover (fraction 0-1), ssrd = surface downward shortwave radiation (W m-2), msl = mean sea level pressure (Pa) (availability varies by source — see GET /v1/sources). Common aliases are accepted case-insensitively and normalized to these ids: temperature/temperature_2m/temp -> t2m, wind/windspeed/wind_speed_10m -> wind_speed, u10m/v10m -> u10/v10, precip/precipitation/rain -> tp, cloud/clouds/cloud_cover -> tcc, solar/radiation/shortwave -> ssrd, pressure/mslp/sea_level_pressure -> msl. The output series always carries the canonical id.

ParametersJSON Schema
NameRequiredDescriptionDefault
latYesLatitude, degrees north.
lonYesLongitude, degrees east.
sourcesNoComma-separated `source_id`s; omit to use every live source with the variable.
variableYesA single variable id, e.g. t2m, tp, tcc, ssrd (or an alias like temperature_2m/precipitation — normalized to the canonical id).
init_timeNoRun init (UTC ISO 8601); omit for each source's latest run.

Output Schema

ParametersJSON Schema
NameRequiredDescription
latYes
lonYes
modelsYes
missingYesRequested/eligible sources with no data for this variable.
variableYes
consensusYesPer-valid_time cross-model spread, ascending.
Behavior5/5

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

No annotations are provided, so the description carries the full burden. It details the sampling behavior, cross-model spread aggregation, source defaults, variable alias normalization, and output carrying canonical IDs. This fully discloses the tool's behavior.

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 a single paragraph that communicates essential information efficiently. It is front-loaded with the primary action. However, it could be slightly more structured (e.g., bullet points for aliases) but remains concise and readable.

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

Completeness5/5

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

Given the tool's complexity, complete schema coverage, and existence of an output schema, the description covers all necessary aspects: purpose, inputs, defaults, alias mapping, and output behavior. It is fully adequate without missing details.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds significant value beyond the schema: it explains how sources default to all live sources, lists canonical variable IDs and common aliases, and clarifies that the output uses canonical IDs. This meets the high bar when schema coverage is high.

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 core action: 'Sample one variable at a point across many models and summarize per-time cross-model spread (min/max/mean/spread).' It uses specific verbs and resources, and differentiates from siblings like point_forecast (single model) and describe_grid (grid description).

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 when to use the tool (to compare models at a point), the default source behavior, and how to pin sources. It also covers variable aliases. However, it does not explicitly state when NOT to use it or compare it to alternatives, though the sibling tool names imply the distinction.

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

describe_gridDescribe a gridded fieldAInspect

Geometry (grid spec + available leads + units) of a gridded field, plus the exact /v1/grid URL and the recipe to decode the raw uint16 bytes. Omit init_time for the latest run.

ParametersJSON Schema
NameRequiredDescriptionDefault
variableNoVariable id, e.g. `t2m` or composite `wind10m`.t2m
init_timeNoRun init (UTC ISO 8601); omit for the latest run.
source_idYesA `source_id` from list_sources.

Output Schema

ParametersJSON Schema
NameRequiredDescription
gridYes
kindYes'scalar' or 'vector' (vector = u plane then v plane).
unitsYes
decodeYesHow to turn the uint16 body into physical values.
variableYes
fetch_urlYesGET this for the raw uint16 field (add ?lead_hours=&stride=).
init_timeYes
source_idYes
lead_hoursYesEvery available lead of this run.
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes the output but does not disclose potential side effects, authentication requirements, or error behavior. The tool appears read-only, but no safety or destructive behavior is mentioned.

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 superfluous words. The first sentence fully explains the output, and the second provides a concise usage tip. Every word earns its place.

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?

An output schema exists, so the return format is documented elsewhere. The description explains the key contents of the output (geometry, URL, decode recipe). However, given the absence of annotations, a brief note on data volume or frequency of updates would improve completeness.

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?

Schema description coverage is 100% (all three parameters have descriptions). The description adds the same advice as the schema for init_time ('omit for latest run'), but does not add new semantic meaning beyond what the schema already provides. Baseline 3 is appropriate.

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 that the tool returns geometry (grid spec, leads, units), the exact API URL, and the decode recipe for raw bytes. This verb+resource combination distinguishes it from siblings like list_sources (which returns source IDs) and point_forecast (which returns point data).

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 includes a usage hint: 'Omit init_time for the latest run.' However, it does not explicitly state when to use this tool versus alternatives such as point_forecast or list_sources. The guideline is implied but lacks explicit when-not and alternative references.

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

list_runsList stored runsAInspect

Stored run init times for a source, newest first (UTC ISO 8601). Pass one to pin a tool to that run.

ParametersJSON Schema
NameRequiredDescriptionDefault
source_idYesA `source_id` from list_sources, e.g. `gfs`.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

No annotations are provided, so the description must fully disclose behavior. It mentions the ordering (newest first) and datetime format (UTC ISO 8601), but does not describe what happens with invalid source_id, absence of runs, pagination limits, or side effects. This leaves moderate gaps.

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 extremely concise with two sentences, front-loading the key output (list of init times) and then adding a practical usage note. Every sentence is meaningful with no wasted words.

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?

Given the tool's low complexity (single parameter, full schema coverage, output schema present), the description covers the main purpose, output format, and ordering. The pinning mechanism is somewhat vague but likely clarified by output schema. Minor gaps exist around pagination and error cases, but overall sufficient.

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?

Schema description coverage is 100% with a clear description for source_id. The description does not add further meaning beyond the schema's example ('e.g., gfs') and the high-level use of the return values. No additional parameter semantics are provided.

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 it lists stored run init times for a source, sorted newest first in UTC ISO 8601 format. It also mentions the secondary purpose of pinning a tool to a run. The verb 'list' and resource 'stored runs' are unambiguous, and the tool is distinct from siblings like list_sources.

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 implies usage by stating the output format and the pinning action, but it does not explicitly say when to use this tool versus alternatives like compare_models or describe_grid. There are no exclusions or alternative tool names mentioned.

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

list_sourcesList forecast sourcesAInspect

Every public forecast source with live-data status, servable variables, cadence and licensing attribution. This is the live enum of source_id accepted by the other tools.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the output includes live-data status, servable variables, cadence, and licensing attribution. It doesn't describe side effects (none expected) or pagination (no parameters). The description is fairly transparent.

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?

Two sentences, front-loaded with purpose, no extraneous information. Every sentence earns its place.

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

Completeness5/5

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

Given no parameters and an output schema, the description covers key attributes and explicitly links to sibling tools. It is complete for a list tool.

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?

No parameters; baseline is 4. The description adds value by explaining what the output contains, which is useful beyond the schema.

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 lists public forecast sources with specific attributes (live-data status, servable variables, cadence, licensing). It distinguishes from siblings by noting it is the live enum of source_id used by other tools.

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 explicitly states this provides the live enum of source_id accepted by other tools, implying it should be used to get valid source IDs before using sibling tools. It does not include when not to use, but the context is clear.

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

point_forecastPoint forecastAInspect

Full forecast horizon of one model at a single point (bilinear grid sample). source_id is OPTIONAL: omit it and a sensible live source is chosen (prefers gfs, then ifs_open) and returned as source_id. Omit init_time for the latest run; omit variables for all stored variables plus derived wind_speed. Canonical variable ids: t2m = 2 m air temperature (K), u10 = 10 m U wind component (m/s), v10 = 10 m V wind component (m/s), wind_speed = 10 m wind speed, derived hypot(u10, v10) (m/s), tp = total precipitation over the step (kg m-2, mm-equivalent), tcc = total cloud cover (fraction 0-1), ssrd = surface downward shortwave radiation (W m-2), msl = mean sea level pressure (Pa) (availability varies by source — see GET /v1/sources). Common aliases are accepted case-insensitively and normalized to these ids: temperature/temperature_2m/temp -> t2m, wind/windspeed/wind_speed_10m -> wind_speed, u10m/v10m -> u10/v10, precip/precipitation/rain -> tp, cloud/clouds/cloud_cover -> tcc, solar/radiation/shortwave -> ssrd, pressure/mslp/sea_level_pressure -> msl. The output series always carries the canonical id.

ParametersJSON Schema
NameRequiredDescriptionDefault
latYesLatitude, degrees north.
lonYesLongitude, degrees east (normalized to [-180,180)).
init_timeNoRun init (UTC ISO 8601); omit for the latest run.
source_idNoA `source_id` from list_sources. OPTIONAL — omit to use a sensible live default (prefers gfs, then ifs_open); the chosen source is echoed as the result's `source_id`.
variablesNoComma-separated variable ids (t2m, u10, v10, wind_speed, tp, tcc, ssrd, msl); omit for all + wind_speed. Common aliases like temperature_2m/windspeed/precipitation/cloud/solar/pressure are accepted (case-insensitive) and normalized to the canonical id.

Output Schema

ParametersJSON Schema
NameRequiredDescription
latYes
lonYesLongitude normalized into [-180, 180).
seriesYes
init_timeYesRun init time (UTC ISO 8601) actually sampled.
source_idYes
Behavior3/5

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

With no annotations provided, the description carries full burden. It explains default selections for source, init_time, and variables, and details variable aliases. However, it does not disclose potential side effects, authentication requirements, rate limits, or error conditions.

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 a single paragraph that efficiently conveys all necessary information without redundancy. It front-loads the core purpose and provides detailed parameter guidance in a compact format.

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?

Given the tool's complexity (5 parameters, 2 required, no enums, output schema present), the description covers defaults, variable mapping, and source selection. It is complete enough for typical use, though it could mention error handling or response structure (mitigated by output schema).

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

Parameters5/5

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

Schema description coverage is 100%, and the description adds significant value beyond schema by explaining default behavior for source_id, init_time, and variables, listing canonical variable IDs and their aliases, and clarifying that the output uses canonical IDs.

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 'Full forecast horizon of one model at a single point (bilinear grid sample)', which is a specific verb-resource pair. It distinguishes itself from siblings like compare_models or list_sources by focusing on point-level forecast data.

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 provides explicit guidance on optional parameters: source_id, init_time, and variables. It explains when to omit them and what defaults apply. However, it does not explicitly state when to use alternatives like compare_models for multi-model comparison.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources