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.
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.
Tool Definition Quality
Average 4.2/5 across 5 of 5 tools scored. Lowest: 3.6/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.
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.
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.
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 toolscompare_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.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude, degrees north. | |
| lon | Yes | Longitude, degrees east. | |
| sources | No | Comma-separated `source_id`s; omit to use every live source with the variable. | |
| variable | Yes | A single variable id, e.g. t2m, tp, tcc, ssrd (or an alias like temperature_2m/precipitation — normalized to the canonical id). | |
| init_time | No | Run init (UTC ISO 8601); omit for each source's latest run. |
Output Schema
| Name | Required | Description |
|---|---|---|
| lat | Yes | |
| lon | Yes | |
| models | Yes | |
| missing | Yes | Requested/eligible sources with no data for this variable. |
| variable | Yes | |
| consensus | Yes | Per-valid_time cross-model spread, ascending. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| variable | No | Variable id, e.g. `t2m` or composite `wind10m`. | t2m |
| init_time | No | Run init (UTC ISO 8601); omit for the latest run. | |
| source_id | Yes | A `source_id` from list_sources. |
Output Schema
| Name | Required | Description |
|---|---|---|
| grid | Yes | |
| kind | Yes | 'scalar' or 'vector' (vector = u plane then v plane). |
| units | Yes | |
| decode | Yes | How to turn the uint16 body into physical values. |
| variable | Yes | |
| fetch_url | Yes | GET this for the raw uint16 field (add ?lead_hours=&stride=). |
| init_time | Yes | |
| source_id | Yes | |
| lead_hours | Yes | Every available lead of this run. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| source_id | Yes | A `source_id` from list_sources, e.g. `gfs`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude, degrees north. | |
| lon | Yes | Longitude, degrees east (normalized to [-180,180)). | |
| init_time | No | Run init (UTC ISO 8601); omit for the latest run. | |
| source_id | No | A `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`. | |
| variables | No | Comma-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
| Name | Required | Description |
|---|---|---|
| lat | Yes | |
| lon | Yes | Longitude normalized into [-180, 180). |
| series | Yes | |
| init_time | Yes | Run init time (UTC ISO 8601) actually sampled. |
| source_id | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityCmaintenanceProvides global weather data (current conditions, forecasts, air quality) without requiring an API key.
- FlicenseBqualityCmaintenanceProvides weather data including US alerts, US forecasts, and global 5-day forecasts without requiring any API keys.31
- Alicense-qualityCmaintenanceProvides access to historical weather data from over 11,000 stations worldwide without requiring authentication.12MIT
- Alicense-qualityDmaintenanceProvides hourly and daily weather forecasts using the free Open-Meteo API without requiring an API key.8MIT