Weather MCP Server
@bittush8789
Weather MCP Server について
Creating MCP (Model Context Protocol) weather-related projects involves setting up an MCP server that can fetch and provide weather data.
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"mcp-bittush8789": {
"command": "uv",
"args": [
"run",
"weather.py"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Weather MCP Server?
The Weather MCP Server fetches weather data from the National Weather Service API. It provides two tools: get_alerts for active weather alerts in a US state and get_forecast for a short-term forecast at a given latitude/longitude. It is intended for developers using the Model Context Protocol (MCP) framework.
How to use Weather MCP Server?
Install dependencies using uv add mcp[cli] httpx requests, then run the server with uv run weather.py. The server communicates via standard I/O. For MCP client integration, add a configuration entry to your config.json specifying the path to uv and the project directory.
Key features of Weather MCP Server
get_alerts(state)returns active weather alerts for a US state.get_forecast(latitude, longitude)returns a short-term forecast.- Leverages the National Weather Service API.
- Requires Python 3.7+ and the httpx library.
- Uses standard I/O for transport.
Use cases of Weather MCP Server
- Checking severe weather alerts for a specific US state.
- Obtaining a short-term weather forecast for a coordinate location.
- Integrating live weather data into any MCP‑compatible client.
FAQ from Weather MCP Server
What data source does the server use?
It fetches weather data from the National Weather Service API.
What tools are available?
The server offers get_alerts(state) for alerts and get_forecast(latitude, longitude) for forecasts.
What are the software requirements?
Python 3.7 or later, the httpx library, and the MCP framework package mcp[cli].
How do I configure an MCP client to use this server?
Add an entry to your client’s config.json with the command set to your uv binary and arguments including --directory, the project path, run, and weather.py.
What transport mechanism does the server use?
The server communicates over standard I/O (stdio).
「メディアとデザイン」の他のコンテンツ
MCP Google Map Server
cablateA powerful Model Context Protocol (MCP) server providing comprehensive Google Maps API integration with LLM processing capabilities.
Spotify MCP Server
marcelmaraisLightweight MCP server for Spotify
Vibe Design System
mondaycom🎨 Vibe Design System - Official monday.com UI resources for application development in React.js
Weather API MCP Server
TuanKiriA lightweight Model Context Protocol (MCP) server that enables AI assistants like Claude to retrieve and interpret real-time weather data. Discuss on Hacker News:
NS Travel Information MCP Server
r-huijtsA Model Context Protocol (MCP) server that provides access to NS (Dutch Railways) travel information through Claude AI. This server enables Claude to fetch real-time train travel information and disruptions using the official Dutch NS API.
コメント