Weather MCP App
Click on "Install 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 Appwhat's the weather in San Francisco?"
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 App
A Model Context Protocol (MCP) server with an interactive React UI for fetching weather data. Works with Claude Desktop, ChatGPT, and any MCP-compatible client.
Features
Current Weather - Real-time temperature, feels-like, humidity, wind speed/direction
Hourly Forecast - 24-hour forecast with weather icons
7-Day Forecast - Daily high/low temperatures and conditions
Air Quality - US AQI, PM2.5, PM10, and ozone levels
Unit Toggle - Switch between Celsius and Fahrenheit
Dual Transport - Works with stdio (Claude Desktop) and HTTP (ChatGPT)
Rate Limiting - 100/hour, 1000/day, 30000/month
Related MCP server: Weather MCP Server
Installation
# Clone the repository
git clone <repository-url>
cd weather-mcp-app
# Install dependencies
npm install
# Build the project
npm run buildQuick Start
Claude Desktop (Stdio)
# Run with stdio transport
npm run start:stdioChatGPT (HTTP)
# Run HTTP server (listens on http://localhost:3001/mcp)
npm run start
# Or in development with hot reload
npm run devConfiguration
Claude Desktop
Add to your Claude Desktop settings (~/Library/Application Support/Claude/settings.json):
{
"mcpServers": {
"weather-mcp-app": {
"command": "npx",
"args": ["-y", "weather-mcp-app", "--stdio"]
}
}
}Or if running locally:
{
"mcpServers": {
"weather-mcp-app": {
"command": "node",
"args": ["path/to/weather-mcp-app/dist/main.js", "--stdio"]
}
}
}ChatGPT
Use the HTTP endpoint: http://localhost:3001/mcp
Usage
Tool: get_weather
name: get_weather
description: Get current weather, hourly forecast, 7-day forecast, and air quality for a city name or zip code.Input Parameters
Parameter | Type | Required | Description |
| string | Yes | City name (e.g., "London") or zip code (e.g., "10001,US") |
| string | No |
|
Example Request
{
"name": "get_weather",
"arguments": {
"location": "San Francisco, CA",
"unit": "celsius"
}
}Example Response
{
"content": [
{
"type": "text",
"text": "Weather in San Francisco:\nMainly clear, 18°C\nFeels like 17°C\nHumidity: 65%\nWind: WNW 15 km/h\nAir Quality: Good (AQI: 35)\n\nHourly Forecast:\nNow: 18°C ☀️\n1PM: 19°C 🌤️\n...\n\n7-Day Forecast:\nToday: 15° - 20°, Mainly clear\nTue: 14° - 19°, Partly cloudy\n..."
}
],
"structuredContent": {
"current": { ... },
"hourly": [ ... ],
"daily": [ ... ],
"location": { ... },
"airQuality": { ... }
}
}Project Structure
weather-mcp-app/
├── src/
│ ├── api/
│ │ └── weather-client.ts # Open-Meteo API client
│ ├── constants/
│ │ └── weather.ts # Weather codes & utilities
│ ├── handlers/
│ │ └── weather-handler.ts # MCP tool handler
│ ├── services/
│ │ └── weather-formatter.ts # Text formatting
│ ├── types/
│ │ └── weather.ts # Zod schemas & types
│ ├── errors/
│ │ └── index.ts # Custom errors
│ ├── utils/
│ │ └── logger.ts # Logging utilities
│ ├── components/ui/ # shadcn/ui components
│ ├── App.tsx # Main React UI
│ ├── server.ts # MCP server setup
│ ├── main.ts # Entry point
│ └── config.ts # Configuration
├── dist/ # Built output
│ ├── main.js # Compiled server
│ └── mcp-app.html # Compiled UI
├── package.json
├── tsconfig.json
├── vite.config.ts
└── README.mdEnvironment Variables
Variable | Description | Default |
| HTTP server port |
|
| Environment mode |
|
| CORS origins (production) | - |
Development Commands
# Build the project
npm run build
# Build server only
npm run build:server
# Run with stdio transport
npm run start:stdio
# Run with HTTP server
npm run start
# Development mode with watch
npm run dev
# Type checking
npm run typecheck
# Run tests
npm run test
# Run unit tests
npm run test:unit
# Run e2e tests
npm run test:e2eAPI Reference
Uses free Open-Meteo APIs (no API key required):
Geocoding:
https://geocoding-api.open-meteo.com/v1/searchWeather:
https://api.open-meteo.com/v1/forecastAir Quality:
https://air-quality-api.open-meteo.com/v1/air-quality
Security
HSTS headers enabled in production
CORS restricted to localhost in development
Request body limit: 10KB
Input validation with Zod schemas
Rate limiting on all requests
Structured logging with Pino
Changelog
See CHANGELOG.md for detailed changes.
Acknowledgments
Open-Meteo API - Free weather and air quality data API. This project uses their Geocoding, Weather Forecast, and Air Quality APIs.
MCP Apps SDK - For enabling interactive UI capabilities in MCP servers.
shadcn/ui - For the beautiful and accessible React components.
Lucide - For the icon library.
License
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
- Flicense-qualityDmaintenanceAn MCP server that provides weather information like forecasts and alerts for US locations using the National Weather Service API.Last updated5
- FlicenseBqualityDmaintenanceAn MCP server that provides weather information and alerts for US locations using the National Weather Service API, enabling retrieval of weather forecasts and active weather alerts.Last updated2
- Alicense-qualityDmaintenanceAn MCP server that provides real-time weather data, hourly forecasts, and daily summaries using the free Open-Meteo API with no API key required. It enables users to search for weather conditions by specific coordinates or city names across multiple measurement units.Last updated1MIT
- Flicense-qualityBmaintenanceA minimal MCP server that provides current weather and forecasts for any city using the free Open-Meteo API, no API key required.Last updated19
Related MCP Connectors
OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)
WeatherAPI.com MCP — wraps WeatherAPI.com (api.weatherapi.com)
A basic MCP server to operate on the Postman API.
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/amrahman90/weather-mcp-app'
If you have feedback or need assistance with the MCP directory API, please join our Discord server