mcp-weather
天気 — 現在の状況と予報
任意の場所の現在の天気と7〜10日間の予報。Open-Meteo(https://open-meteo.com)をバックエンドとして使用。各国の気象機関データ(米国はNOAA、ドイツはDWDなど)を集約する無料サービス。気温、湿度、風、降水量、天候状況を返します。無料、認証不要、APIキー不要。
Pipeworx の一部 — AIエージェントを1394以上のライブデータソースに接続するMCPゲートウェイ。
AIエージェントにとって重要な理由
天気は、エージェントが常に把握しておく必要がある情報の一つです — 旅行計画、農業に関する質問、エネルギー需要の文脈、イベント計画、不動産(「この市場は洪水地帯で、現在洪水が発生しているか?」)など。Open-Meteoは適切なバックエンドです:無料、正確、世界規模のカバレッジ、キー管理の手間なし。
一般的なフロー:
現在の状況。 「東京の今の天気」→
get_weather({location: "Tokyo"})→ 気温、湿度、風、天候状況。予報。 「デンバーの7日間予報」→
get_forecast({location: "Denver"})→ 日ごとの最高/最低気温、降水確率。座標による指定。 名前ではうまくジオコーディングできない場所には
get_weather({latitude: 39.74, longitude: -104.99})。
Related MCP server: MCP Weather Server
認証
なし。Open-Meteoは無料で認証不要です。寛大なフェアユース制限(IPあたり1日約10,000リクエスト)。Pipeworxは場所ごとに短い時間キャッシュするため、繰り返しの呼び出しで日次クォータを消費しません。
ジオコーディング
location パラメータは以下を受け付けます:
都市名(
"Tokyo"、"London"、"Denver")都市+国(テキサス州パリと区別するための
"Paris, France")郵便番号(米国は
"94070"、英国は"SW1A 1AA")別の
latitude+longitude引数としての座標
曖昧な名前の場合、ツールは曖昧さ解消のヒントを返します。特殊な場所や精度が重要なクエリ(沖合、遠隔地)の場合は、座標を直接渡してください。
更新頻度
データ | 更新間隔 |
現在の状況 | 約10分 |
時間別予報(次の24時間) | 1〜3時間ごと |
日別予報(1〜10日) | 6時間ごと |
Pipeworxは10分のTTLでキャッシュするため、その時間内の繰り返し呼び出しは低コストです。
よくある落とし穴
タイムゾーン。 予報時間はデフォルトでUTCです。ツールは場所のタイムゾーンも返すため、ユーザーに表示する際はクライアント側で変換してください。
降水確率と降水量。 「雨の確率70%」と「0.4インチの降水量」は別のフィールドです。農業や旅行での使用では両方が重要です。両方を報告してください。
予報精度は日数が進むにつれて低下します。 1日目は信頼性が高く、7日目以降は「方向性のある天気シグナル」です。10日間予報を確実な予測として引用しないでください。
激しい気象イベント。 Open-Meteoにはハザードフィールドがありますが、米国のNWSアクティブアラートほど信頼性は高くありません。激しい気象用エージェントには、NOAA NWS APIをレイヤーとして追加してください。
過去の天気。 デフォルトのツールは現在+未来です。過去のデータ(昨日以前)については、Open-Meteoに別のエンドポイントがあります。必要な場合は pipeworx_feedback でチームに知らせてください。
クイックスタート
MCPクライアント(Claude Desktop、Cursor、Windsurfなど)に追加:
{
"mcpServers": {
"weather": {
"url": "https://gateway.pipeworx.io/weather/mcp"
}
}
}または、フルPipeworxゲートウェイに接続して、1394以上のデータソースすべてにアクセス:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}ask_pipeworxでの使用
ツールを直接呼び出す代わりに、平易な英語で質問できます:
ask_pipeworx({ question: "your question about Weather data" })ゲートウェイが適切なツールを選択し、引数を自動的に入力します。
詳細
ライセンス
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.
- AlicenseNot gradedqualityDmaintenanceProvides real-time weather information and multi-day forecasts using the Open-Meteo API through a robust, enterprise-grade architecture. It enables AI assistants to retrieve current conditions, 7-day forecasts, and contextual weather data for any location.17MIT
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to retrieve current weather, forecasts, and summaries for any global location using the Open-Meteo API, with no API key required.21Creative Commons Zero v1.0 Universal
- FlicenseNot gradedqualityDmaintenanceEnables AI agents like GitHub Copilot to retrieve real-time weather data for any city using the Open-Meteo API, no API key required.9
Related MCP Connectors
Global weather via Open-Meteo: forecast, ERA5 archive, marine, air quality, geocoding, elevation.
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
US weather, alerts, earthquakes and elevation for AI agents, from NWS/NOAA and USGS. No API keys.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pipeworx-io/mcp-weather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server