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.
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 3.9/5 across 2 of 2 tools scored.
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.
Both tool names follow a consistent verb_noun snake_case pattern: geocode_location and get_forecast. The naming is predictable and uniform.
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.
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 toolsfind_weather_stationsFind weather stationsInspect
Find the nearest official weather stations (Frost). Use the station id (e.g. SN50540) with get_historical_weather.
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Maximum number of stations to return | |
| latitude | Yes | Latitude in decimal degrees | |
| longitude | Yes | Longitude in decimal degrees |
geocode_locationGeocode a place nameAInspect
Find latitude and longitude for a place name. Use the coordinates with the other tools.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Place name, e.g. 'Bergen' or 'Oslo, Norway' | |
| count | No | Maximum number of matches to return |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| hours | No | How many hours ahead to include | |
| latitude | Yes | Latitude in decimal degrees | |
| longitude | Yes | Longitude in decimal degrees |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | End date (exclusive), YYYY-MM-DD | |
| from | Yes | Start date, YYYY-MM-DD | |
| elements | No | Frost element ids. Defaults: daily mean temperature, precipitation sum, max wind. | |
| station_id | Yes | Station 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?'
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | Latitude in decimal degrees | |
| longitude | Yes | Longitude in decimal degrees |
get_ocean_forecastGet ocean forecastInspect
Wave height, wave direction, and sea temperature. Covers the Norwegian coast and nearby seas.
| Name | Required | Description | Default |
|---|---|---|---|
| hours | No | How many hours ahead to include | |
| latitude | Yes | Latitude in decimal degrees | |
| longitude | Yes | Longitude in decimal degrees |
get_sun_eventsGet sunrise and sunsetInspect
Sunrise, sunset, and solar noon for a coordinate and date. Works worldwide.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date as YYYY-MM-DD | |
| latitude | Yes | Latitude in decimal degrees | |
| longitude | Yes | Longitude in decimal degrees | |
| utc_offset | No | UTC 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.
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | No | Latitude in decimal degrees | |
| longitude | No | Longitude in decimal degrees |
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
- AlicenseNot gradedqualityDmaintenanceProvides hourly and daily weather forecasts using the free Open-Meteo API without requiring an API key.8MIT
- AlicenseNot gradedqualityDmaintenanceProvides current weather data and hourly forecasts for any location worldwide using the Open-Meteo API, accessible through HTTP transport without requiring an API key.14MIT
- FlicenseBqualityDmaintenanceProvides current weather conditions and forecasts for any location using the Open-Meteo API.2
- AlicenseNot gradedqualityCmaintenanceEnables access to MET Norway weather data including global forecasts, Nordic nowcast, sunrise/sunset times, air quality, and ocean forecasts via natural language queries.3MIT
Your Connectors
Sign in to create a connector for this server.