About
Weather MCP Server is a real-time meteorological data provider that sources weather and air quality information from the Open-Meteo API. It enables applications to retrieve comprehensive weather metrics for any global location without requiring API authentication. Key capabilities include: - Current weather conditions including temperature, humidity, dew point, wind speed and direction, precipitation probability, atmospheric pressure, cloud cover, UV index, visibility, and "feels like" temperature - Historical and forecasted hourly weather data for custom date ranges - Air quality metrics such as PM2.5, PM10, ozone, nitrogen dioxide, carbon monoxide, sulfur dioxide, ammonia, dust concentration, and aerosol optical depth with health recommendations - Timezone management tools for current time retrieval, timezone conversion, and timezone metadata - Flexible transport options supporting stdio for desktop clients, Server-Sent Events (SSE), and Streamable HTTP for web-based integrations
Tools 8
get_current_weatherGet current weather information for a specified city. It extracts the current hour's temperature and weather code, maps the weather code to a human-readable description, and returns a formatted summary.
get_weather_byDateTimeRangeGet weather information for a specified city between start and end dates.
get_weather_detailsGet detailed weather information for a specified city as structured JSON data. This tool provides raw weather data for programmatic analysis and processing.
get_current_datetimeGet current time in specified timezone.
get_timezone_infoGet information about a specific timezone including current time and UTC offset.
convert_timeConvert time from one timezone to another.
get_air_qualityGet air quality information for a specified city including PM2.5, PM10, ozone, nitrogen dioxide, carbon monoxide, and other pollutants. Provides health advisories based on current air quality levels.
get_air_quality_detailsGet detailed air quality information for a specified city as structured JSON data. This tool provides raw air quality data for programmatic analysis and processing.
README
[](https://smithery.ai/server/@isdaniel/mcp_weather_server) [](https://pypi.org/project/mcp-weather-server/) [](https://pypi.org/project/mcp-weather-server/) [](https://pepy.tech/projects/mcp-weather-server) [](https://hub.docker.com/r/dog830228/mcp_weather_server)
Weather MCP Server
mcp-name: io.github.isdaniel/mcp_weather_server
A Model Context Protocol (MCP) server that provides weather information using the Open-Meteo API. This server supports multiple transport modes: standard stdio, HTTP Server-Sent Events (SSE), and the new Streamable HTTP protocol for web-based integration.
Features
Weather & Air Quality
Time & Timezone
Transport Modes
Installation
Installing via Smithery
To install Weather MCP Server automatically via Smithery:
npx -y @smithery/cli install @isdaniel/mcp_weather_server
Standard Installation (for MCP clients like Claude Desktop)
This package can be installed using pip:
pip install mcp_weather_server
Manual Configuration for MCP Clients
This server is designed to be installed manually by adding its configuration to the cline_mcp_settings.json file.
1. Add the following entry to the mcpServers object in your cline_mcp_settings.json file:
{
"mcpServers": {
"weather": {
"command": "python",
"args": [
"-m",
"mcp_weather_server"
],
"disabled": false,
"autoApprove": []
}
}
}
2. Save the cline_mcp_settings.json file.
HTTP Server Installation (for web applications)
For HTTP SSE or Streamable HTTP support, you'll need additional dependencies:
pip install mcp_weather_server starlette uvicorn
Server Modes
This MCP server supports stdio, SSE, and streamable-http modes in a single unified server:
Mode Comparison
| Feature | stdio | SSE | streamable-http |
|---------|-------|-----|-----------------|
| Use Case | Desktop MCP clients | Web applications (legacy) | Web applications (modern) |
| Protocol | Standard I/O streams | Server-Sent Events | MCP Streamable HTTP |
| Session Management | N/A | Stateful | Stateful or Stateless |
| Endpoints | N/A | /sse, /messages/ | /mcp (single) |
| Best For | Claude Desktop, Cline | Browser-based apps | Modern web apps, APIs |
| State Options | N/A | Stateful only | Stateful or Stateless |
1. Standard MCP Mode (Default)
The standard mode communicates via stdio and is compatible with MCP clients like Claude Desktop.# Default mode (stdio)
python -m mcp_weather_serverExplicitly specify stdio mode
python -m mcp_weather_server.server --mode stdio
2. HTTP SSE Mode (Web Applications)
The SSE mode runs an HTTP server that provides MCP functionality via Server-Sent Events, making it accessible to web applications.# Start SSE server on default host/port (0.0.0.0:8080)
python -m mcp_weather_server --mode sseSpecify custom host and port
python -m mcp_weather_server --mode sse --host localhost --port 3000Enable debug mode
python -m mcp_weather_server --mode sse --debug
SSE Endpoints:
GET /sse - SSE endpoint for MCP communicationPOST /messages/ - Message endpoint for sending MCP requests3. Streamable HTTP Mode (Modern MCP Protocol)
The streamable-http moRelated MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Math-MCP
EthanHenrickson
Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support