Skip to main content
Glama

met-mcp

Server Details

Weather forecasts from MET Norway (Yr): geocoding plus hourly forecasts worldwide.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
trondbjoroy/met-mcp
GitHub Stars
0
Server Listing
met-mcp

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 3.9/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools have clearly distinct purposes: geocode_location converts a place name to coordinates, while get_forecast retrieves weather data for those coordinates. There is no ambiguity or overlap between them.

Naming Consistency5/5

Both tool names follow a consistent verb_noun snake_case pattern: geocode_location and get_forecast. The naming is predictable and uniform.

Tool Count3/5

With only two tools, the server feels minimal for a weather service, though it covers a complete workflow (place to coordinates to forecast). The count is at the thin end of acceptable but not unreasonable for a narrowly scoped server.

Completeness4/5

The core workflow of getting a forecast from a place name is fully supported. Minor gaps exist such as no current conditions or daily forecast summary, but the stated purpose of hourly forecasts is adequately covered.

Available Tools

8 tools
find_weather_stationsFind weather stationsInspect

Find the nearest official weather stations (Frost). Use the station id (e.g. SN50540) with get_historical_weather.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNoMaximum number of stations to return
latitudeYesLatitude in decimal degrees
longitudeYesLongitude in decimal degrees
geocode_locationGeocode a place nameAInspect

Find latitude and longitude for a place name. Use the coordinates with the other tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPlace name, e.g. 'Bergen' or 'Oslo, Norway'
countNoMaximum number of matches to return
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. It states the output conceptually ('latitude and longitude') and the intended follow-up, but does not disclose potential ambiguity (e.g., multiple matches controlled by the count parameter) or any failure behavior. A 3 reflects a basic but not fully transparent picture.

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 short sentences, each earning its place. The first states the operation; the second ties it to the intended workflow. No redundant wording or generic filler.

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?

For a simple two-parameter tool with a fully described schema and no output schema, the description provides enough to select and invoke it. It explains the high-level goal, how the output is used, and leaves detailed parameter semantics to the schema. It does not cover error or ambiguity cases, but that is not essential at this level of complexity.

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%, so the baseline is 3. The description adds no actual parameter semantics beyond the examples already given in the schema. It correctly points to the 'name' parameter's purpose, but does not improve on the schema's own documentation.

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 uses a specific verb and resource: 'Find latitude and longitude for a place name.' It exactly captures what the tool does and immediately connects the result to the only sibling tool (get_forecast), effectively distinguishing the geocoding step from the forecast step without overlap.

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 gives clear context on when to use the tool: when you need coordinates to feed into get_forecast. It does not explicitly state when not to use it, but there is only one sibling tool and the intended workflow is obvious, making exclusions unnecessary.

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

get_forecastGet weather forecastAInspect

Get an hourly weather forecast from MET Norway (Yr) for a coordinate. Works worldwide, best coverage in the Nordics.

ParametersJSON Schema
NameRequiredDescriptionDefault
hoursNoHow many hours ahead to include
latitudeYesLatitude in decimal degrees
longitudeYesLongitude in decimal degrees
Behavior3/5

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

With no annotations present, the description carries the burden of disclosing behavior. It usefully discloses the data source, the hourly granularity, and geographic coverage. It does not mention auth needs, rate limits, response format, or failure behavior, so the disclosure is informative but incomplete.

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, front-loaded sentence that states the verb, resource, input, and a key limitation. There is no wasted text, and all information 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?

The tool is simple, all parameters are covered by the schema, and no output schema exists. The description conveys the essential behavior: an hourly forecast at a coordinate. It could mention what the response contains or how to get coordinates first, but those gaps are minor for this tool's straightforward invocation.

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%, so the schema already documents latitude, longitude, and hours with types, bounds, and defaults. The description adds only a high-level mapping ('hourly' → hours, 'coordinate' → lat/long) and no new parameter meaning, matching the baseline for high schema coverage.

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 states a specific action ('get'), a specific resource ('hourly weather forecast from MET Norway (Yr)'), and a specific input ('for a coordinate'). It clearly distinguishes the tool from the sibling geocode_location, which addresses a different task.

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 that the tool is for weather data at an already-known coordinate, and 'works worldwide, best coverage in the Nordics' adds practical context. However, it does not explicitly explain when to use this tool instead of geocode_location, nor does it mention that geocoding may be needed to obtain coordinates. The usage guidance is implied rather than stated.

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

get_historical_weatherGet historical weatherInspect

Daily historical observations from a weather station (Frost archive, some stations go back over 100 years). Find station ids with find_weather_stations.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesEnd date (exclusive), YYYY-MM-DD
fromYesStart date, YYYY-MM-DD
elementsNoFrost element ids. Defaults: daily mean temperature, precipitation sum, max wind.
station_idYesStation id from find_weather_stations, e.g. SN50540
get_nowcastGet precipitation nowcastInspect

Minute-by-minute precipitation for the next 2 hours, radar-based. Nordic region only. Answers 'do I need an umbrella right now?'

ParametersJSON Schema
NameRequiredDescriptionDefault
latitudeYesLatitude in decimal degrees
longitudeYesLongitude in decimal degrees
get_ocean_forecastGet ocean forecastInspect

Wave height, wave direction, and sea temperature. Covers the Norwegian coast and nearby seas.

ParametersJSON Schema
NameRequiredDescriptionDefault
hoursNoHow many hours ahead to include
latitudeYesLatitude in decimal degrees
longitudeYesLongitude in decimal degrees
get_sun_eventsGet sunrise and sunsetInspect

Sunrise, sunset, and solar noon for a coordinate and date. Works worldwide.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesDate as YYYY-MM-DD
latitudeYesLatitude in decimal degrees
longitudeYesLongitude in decimal degrees
utc_offsetNoUTC offset for the returned times, e.g. '+02:00' for Norwegian summer time+00:00
get_weather_alertsGet weather alertsInspect

Official danger warnings (wind, flood, ice, forest fire...) from MET Norway. Covers Norway and its waters. Omit coordinates to get all current alerts. Alert text is in Norwegian.

ParametersJSON Schema
NameRequiredDescriptionDefault
latitudeNoLatitude in decimal degrees
longitudeNoLongitude in decimal degrees

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.