MCP Weather Server
Provides real-time weather data for any city through a get-weather tool that allows Copilot to answer questions about current weather conditions in specific locations.
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., "@MCP Weather Serverwhat's the weather like in Tokyo right now?"
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.
MCP Weather Server
A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot.
Quick Start
Clone the repository:
git clone https://github.com/microsoft/lets-learn-mcp-javascript.git
cd mcp-weather-server1. Install Dependencies
npm install2. Run the Server
Test with MCP Inspector:
npx -y @modelcontextprotocol/inspector npx -y tsx main.ts3. Use with VS Code
Open the
mcp.jsonfile in.vscodefolderClick the start server button above line 4
Open Chat mode and select agent and choose a modal that supports MCPs such as Claude Sonnet
Type or speak into the chat and ask it what the weather is like in your city
Related MCP server: MCP Weather Server
Features
🌤️ Real-time weather data for any city
🌍 No API key required (uses Open-Meteo)
🤖 Works with GitHub Copilot and other MCP-compatible AI tools
⚡ Easy to test with MCP Inspector
Usage Examples
Ask GitHub Copilot:
"What's the weather like in Tokyo?"
"How's the weather in London today?"
"Give me the current weather for Paris"
How It Works
The server provides a get-weather tool that:
Converts city names to coordinates using geocoding
Fetches current weather data from Open-Meteo API
Returns structured data that AI agents can format beautifully
Code Structure
// Creates MCP server with weather tool
const server = new McpServer({
name: "Weather Server",
version: "1.0.0"
});
// Defines the get-weather tool
server.tool('get-weather', 'Tool to get the weather of a city', ...);
// Connects via stdio transport
const transport = new StdioServerTransport();
server.connect(transport);Dependencies
@modelcontextprotocol/sdk- MCP server frameworkzod- Schema validationtsx- TypeScript execution (for development)
API Used
Open-Meteo - Free weather API with no authentication required
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Flicense-qualityDmaintenanceA Model Context Protocol server that provides current weather information and 3-day forecasts for specified cities using the Open-Meteo API.Last updated1
- AlicenseBqualityDmaintenanceA simple server that implements the Model Context Protocol, allowing AI models like Claude to fetch real-time weather information for any location using the wttr.in API.Last updated4111MIT
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server that enables AI assistants and LLMs to access real-time weather data and forecasts by connecting to the OpenWeatherMap API.Last updated
- Flicense-qualityDmaintenanceA Model Context Protocol server that enables natural language weather queries for global cities, integrating with OpenWeather API to provide real-time weather information in an easy-to-read format.Last updated1
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Open-Meteo MCP — weather forecast + historical reanalysis + sister APIs
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/microsoft/lets-learn-mcp-javascript'
If you have feedback or need assistance with the MCP directory API, please join our Discord server