π¦
Weather Server Demo
A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot
0 installs
7 stars
6 forks
Trust: 41 β Fair
Devtools
Installation
npx mcp-weather-server-demoAsk AI about Weather Server Demo
Powered by Claude Β· Grounded in docs
I know everything about Weather Server Demo. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
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/debs-obrien/mcp-weather-server-demo.git
cd mcp-weather-server-demo
1. Install Dependencies
npm install
2. Run the Server
Test with MCP Inspector:
npx -y @modelcontextprotocol/inspector npx -y tsx main.ts
3. Use with VS Code
- Open the
mcp.jsonfile in.vscodefolder - Click 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
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 validation
API Used
- Open-Meteo - Free weather API with no authentication required
Read the full Blog post
Building Your First MCP Weather Server: A Complete Tutorial

