Weather & Location MCP Server
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 & Location MCP Serverget current weather in Paris"
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 & Location MCP Server
A beginner-friendly MCP server built with TypeScript, Node.js, the MCP TypeScript SDK, OpenWeather API, dotenv, and zod.
Features
getCurrentWeather(city)getForecast(city)getAirQuality(city)Sunrise and sunset information
Environment variable support with
dotenvInput validation with
zodTypeScript response types for API data
Helpful error handling
Related MCP server: OpenWeatherMap MCP Server
Tech Stack
TypeScript
Node.js
@modelcontextprotocol/sdkOpenWeather API
dotenvzod
Project Structure
weather-location-mcp-server/
|- src/
| |- index.ts
| |- weatherApi.ts
| `- types.ts
|- .env.example
|- .gitignore
|- package.json
|- README.md
`- tsconfig.jsonSetup
1. Install dependencies
npm install2. Create your environment file
Create a .env file in the project root:
OPENWEATHER_API_KEY=your_api_key_hereYou can copy from .env.example and replace the placeholder value with your real OpenWeather API key.
3. Build the project
npm run buildRun the Server
Development mode
npm run devProduction build
npm run build
npm run startThe server runs over stdio, so it will wait quietly for an MCP client to connect.
Available Tools
getCurrentWeather
Input:
{
"city": "Delhi"
}Returns:
City name
Country
Weather condition and description
Temperature
Feels-like temperature
Humidity
Sunrise time
Sunset time
getForecast
Input:
{
"city": "Delhi"
}Returns:
City name
Country
First 5 forecast entries
Temperature
Weather condition and description
getAirQuality
Input:
{
"city": "Delhi"
}Returns:
AQI value
AQI label
CO
NO2
O3
PM2.5
PM10
Using with Codex
If you want Codex to use this server as an MCP tool provider, add a project config file at .codex/config.toml:
[mcp_servers.weather_location]
command = "node"
args = ["dist/index.js"]
cwd = "D:\\My PC\\Coding\\web development\\Weather & Location MCP Server"
enabled = true
startup_timeout_sec = 20
tool_timeout_sec = 60Then restart Codex or open a new thread in the project.
Notes
Keep
.envout of GitHub because it contains your API key.Keep
.codex/out of GitHub if it contains your personal local Codex setup.This project uses Node.js native
fetch.
License
ISC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Sousam2002/weather-location-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server