Weatherapi Mcp
Description
# WeatherAPI MCP Server An MCP server that provides current weather and air quality data using WeatherAPI. ## Features - Get current weather data for any city - Air quality information (optional) - Dynamic URI support for weather resources - Easy integration with n8n, Claude…
About
# WeatherAPI MCP Server An MCP server that provides current weather and air quality data using WeatherAPI. ## Features - Get current weather data for any city - Air quality information (optional) - Dynamic URI support for weather resources - Easy integration with n8n, Claude Desktop App, Windsurf IDE,Cursor IDE, and…
Details
- Author
- swonixs
- Downloads
- 194
- Categories
- Other
Jump to
- Get current weather for any city
- Retrieve air quality information (optional)
- Dynamic URI support for weather resources
- Easy integration with multiple MCP clients
- Simple tool-based interaction via get_weather
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Weatherapi McpCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Obtain an API key from WeatherAPI.com, then configure your MCP client to run the server via npx with the command npx -y @swonixs/weatherapi-mcp and set the environment variable WEATHER_API_KEY. Use the get_weather tool to retrieve current weather for a specified city.
get_weather
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"weatherapi mcp": {
"weather": {
"command": "npx",
"args": [
"-y",
"@swonixs/weatherapi-mcp"
],
"env": {
"WEATHER_API_KEY": "Popt3hNsJZD1c6raA5kQ2D"
}
}
}
}
}
McpServers
{
"weather": {
"command": "npx",
"args": [
"-y",
"@swonixs/weatherapi-mcp"
],
"env": {
"WEATHER_API_KEY": "Popt3hNsJZD1c6raA5kQ2D"
}
}
}
WeatherAPI MCP Server
An MCP server that provides current weather and air quality data using WeatherAPI.
Features
- Get current weather data for any city
- Air quality information (optional)
- Dynamic URI support for weather resources
- Easy integration with n8n, Claude Desktop App, Windsurf IDE,Cursor IDE, and other MCP clients
Getting Started
Get WeatherAPI Key
1. Go to WeatherAPI.com
2. Sign up for a free account
3. After signing in, go to your dashboard
4. Copy your API key from the "API Keys" section
MCP Configuration
Add the following configuration to your Windsurf MCP config file:
{
"mcpServers": {
"weather": {
"command": "npx",
"args": ["-y", "@swonixs/weatherapi-mcp"],
"env": {
"WEATHER_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
Replace YOUR_API_KEY_HERE with the API key you obtained from WeatherAPI.com.
Tools
get_weather
Get current weather data for a specified city.
Parameters:
- location (string): City name
Example response:
{
"location": "London",
"country": "United Kingdom",
"temp_c": 15.0,
"condition": "Partly cloudy",
"humidity": 71,
"wind_kph": 14.4,
"air_quality": {
"co": 230.3,
"no2": 13.5,
"o3": 52.9,
"pm2_5": 8.5,
"pm10": 12.1,
"us-epa-index": 1
}
}
Repository
License
MIT
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



