Weather MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Weather MCP ServerWhat's the current temperature in London?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Weather MCP Server
A standard Model Context Protocol (MCP) server that provides real-time weather forecasts based on city names using the Open-Meteo API.
Features
Geocoding: Automatically converts city names to geographic coordinates (latitude & longitude)
Real-time Weather: Retrieves current temperature, wind speed, and weather codes
MCP Integration: Fully compatible with MCP clients like Claude Desktop
Zero API Keys: Uses the free, open-source Open-Meteo API—no registration required!
Related MCP server: MCP Weather Server
Prerequisites
Node.js >= 18.x
npm or yarn
Installation
Clone the repository:
git clone https://github.com/Yaseen-md/weather-mcp-server.git
cd weather-mcp-serverInstall dependencies:
npm installBuild the server:
npm run buildDevelopment
Run the server directly without building:
npm run devIntegrating with Claude Desktop
To use this weather server with Claude Desktop, you need to configure your claude_desktop_config.json file.
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"weather": {
"command": "node",
"args": [
"C:/path/to/your/weather-mcp-server/build/index.js"
]
}
}
}(Make sure to replace the path with the actual absolute path to your built index.js file.)
Tools Available
get_weather
Fetches the current weather for a specified city.
Input parameters:
city(string): The name of the city (e.g., "Delhi", "Tokyo", "London", "San Francisco")
Returns: Temperature in Celsius, wind speed, and weather code.
License
This project is licensed under the MIT License.
Available Tools
1 toolget_weatherA
Get current weather for a given city
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City name (e.g., Delhi, Tokyo, London) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description is the sole behavioral disclosure. The verb 'Get' implies a read operation, but nothing describes the response format, units, error behavior, or any side effects. Minimal transparency beyond the name itself.
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?
A single, front-loaded sentence that communicates the core operation with zero redundancy. Appropriate for the tool's simplicity.
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 single-parameter tool with no output schema, the description is minimal but still incomplete: it fails to hint at what 'current weather' includes (temperature, conditions, etc.), leaving the agent to guess at the return shape. A short list of typical response fields would make it complete.
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 input schema fully describes the single 'city' parameter (100% coverage) with type and examples. The description's 'given city' repeats schema content, adding no new semantic information, so the baseline of 3 applies.
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 'Get' with resource 'current weather' and scope 'for a given city'. It unambiguously states the tool's function. With no sibling tools, differentiation is moot.
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 usage: when current weather for a city is needed. However, it offers no explicit conditions, exclusions, or alternative selection guidance, relying entirely on the self-evident purpose.
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
v1.0.0- First observed
get_weather
TDQS
Scored across 1 tool
With only one tool, there is no possibility of confusion between tools. The tool's purpose is clear and distinct by default.
The tool name follows a consistent verb_noun pattern (get_weather). With a single tool, there are no naming inconsistencies to evaluate.
One tool feels thin for a weather server, which typically offers multiple data types like forecasts and alerts. However, it is borderline given the narrow 'current weather' scope.
The server only covers current conditions, missing obvious weather domain features such as forecasts, historical data, or alerts. This significantly limits its usefulness for common weather queries.
Maintenance
Related MCP Connectors
Real-time weather conditions and multi-day forecasts via Open-Meteo — free, no API key required
Global weather via Open-Meteo: forecast, ERA5 archive, marine, air quality, geocoding, elevation.
Get current weather for any city and create images from your prompts. Streamline planning, reports…
Free, keyless real-time weather and 7-day forecasts for any city worldwide.
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.-
- 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-
- AlicenseNot gradedqualityDmaintenanceProvides real-time and historical weather data for any city worldwide, including forecasts, air quality, and marine conditions, using the free Open-Meteo API.6MIT
- FlicenseNot gradedqualityBmaintenanceEnables querying current weather, 7-day forecast, UV index, and air quality for any city using the free Open-Meteo API, without requiring an API key.12-