MCP Weather Server
MCP 天気サーバー
AccuWeather API を使用して 1 時間ごとの天気予報を提供するシンプルな MCP サーバー。
設定
uvを使用して依存関係をインストールします。
uv venv
uv syncAccuWeather API キーを使用して
.envファイルを作成します。
ACCUWEATHER_API_KEY=your_api_key_hereAccuWeather APIに登録することで API キーを取得できます。
Related MCP server: Weather-Open-Meteo-MCP
サーバーの実行
{
"mcpServers": {
"weather": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-weather.git", "mcp-weather"],
"env": {
"ACCUWEATHER_API_KEY": "your_api_key_here"
}
}
}
}APIの使用
1時間ごとの天気予報を取得する
応答:
{
"location": "Jakarta",
"location_key": "208971",
"country": "Indonesia",
"current_conditions": {
"temperature": {
"value": 32.2,
"unit": "C"
},
"weather_text": "Partly sunny",
"relative_humidity": 75,
"precipitation": false,
"observation_time": "2024-01-01T12:00:00+07:00"
},
"hourly_forecast": [
{
"relative_time": "+1 hour",
"temperature": {
"value": 32.2,
"unit": "C"
},
"weather_text": "Partly sunny",
"precipitation_probability": 40,
"precipitation_type": "Rain",
"precipitation_intensity": "Light"
}
]
}API は以下を提供します:
気温、天気の説明、湿度、降水状況を含む現在の気象状況
次の時間別データを含む 12 時間予報:
現在時刻からの相対時間
摂氏温度
天気の説明
降水確率、種類、強度
Available Tools
1 toolget_hourly_weatherC
Get hourly weather forecast for a location.
| Name | Required | Description | Default |
|---|---|---|---|
| location | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'Get' which implies a read operation, but fails to describe any behavioral traits such as rate limits, authentication needs, error handling, or what the forecast includes. This leaves significant gaps for a tool that likely interacts with external data.
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, efficient sentence that directly states the tool's function without any wasted words. It is appropriately sized and front-loaded, making it easy to parse quickly.
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 (weather forecasting likely involves external APIs), lack of annotations, no output schema, and incomplete parameter documentation, the description is insufficient. It doesn't explain return values, error cases, or operational constraints, leaving the agent poorly informed.
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?
The description adds minimal meaning beyond the input schema, which has 0% coverage. It implies the 'location' parameter is used to specify where to get the forecast, but doesn't clarify format (e.g., city name, coordinates) or constraints. With one parameter and low schema coverage, the description provides some context but doesn't fully compensate.
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 action ('Get') and resource ('hourly weather forecast for a location'), making the tool's purpose immediately understandable. It doesn't need to differentiate from siblings since none exist, but it could be more specific about what 'hourly weather forecast' entails (e.g., temperature, precipitation).
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?
No guidance is provided on when to use this tool versus alternatives or in what context. The description states what it does but offers no information about prerequisites, timing, or limitations, leaving the agent without usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- First observed
get_hourly_weather
TDQS
Scored across 1 tool
With only one tool, there is no possibility of ambiguity or overlap between tools. The single tool has a clear and distinct purpose, making it impossible for an agent to misselect between multiple options.
The single tool name follows a consistent verb_noun pattern (get_hourly_weather). Since there is only one tool, there are no deviations or mixed conventions to evaluate, resulting in perfect consistency.
A single tool for a weather server is too few for the apparent scope, as it only provides hourly forecasts without coverage for current conditions, daily forecasts, or other common weather data. This minimal set limits functionality and will likely cause agent failures in broader weather-related tasks.
The tool surface is severely incomplete for a weather domain, lacking obvious gaps such as current weather, daily forecasts, alerts, or historical data. With only hourly forecasts, agents cannot perform comprehensive weather-related operations, leading to significant limitations in coverage.
Maintenance
Related MCP Connectors
Provide real-time and forecast weather information for locations in the United States using natura…
Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.
Current weather and forecasts for any coordinates, backed b… — paid per call (x402/credits), 1 tools
WeatherAPI.com MCP — wraps WeatherAPI.com (api.weatherapi.com)
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to fetch current weather conditions and forecasts for any city using the Open-Meteo API. Provides temperature, precipitation, and hourly forecast data through natural language queries.-
- AlicenseAqualityDmaintenanceProvides hourly and daily weather forecasts using the free Open-Meteo API without requiring an API key.29 npmMIT
- AlicenseNot gradedqualityDmaintenanceProvides hourly weather forecasts using the AccuWeather API, including current conditions and 12-hour forecast with temperature, precipitation, and weather description.14 npm1-
- FlicenseBqualityDmaintenanceProvides current weather conditions and forecasts for any location using the Open-Meteo API.2-