Skip to main content
Glama

Weather MCP Server

by jefercort

Practice MCP JS

A Model Context Protocol (MCP) server implementation in TypeScript that provides weather information tools for AI assistants.

Description

This project demonstrates how to create an MCP server that exposes weather-related tools to Large Language Models (LLMs). The server provides a fetch-weather tool that retrieves current weather data and forecasts for any city using the Open-Meteo API.

Features

  • Weather Tool: Fetch current weather conditions and forecasts for any city
  • Input Validation: Uses Zod for robust input/output validation
  • MCP Protocol: Compatible with AI assistants that support the Model Context Protocol
  • TypeScript: Fully typed implementation for better development experience

Prerequisites

  • Node.js (version 14 or higher)
  • npm or yarn package manager

Installation

  1. Clone the repository:
git clone <repository-url> cd practice-mcp-js
  1. Install dependencies:
npm install

Usage

Running the Server

To start the MCP server:

npx tsx main.ts

The server will start and listen for MCP connections via stdio transport.

Available Tools

fetch-weather

Retrieves weather information for a specified city.

Parameters:

  • city (string): Name of the city to get weather information for

Example Response: The tool returns current weather conditions including:

  • Temperature
  • Precipitation
  • Day/night status
  • Rain information
  • Hourly forecast data

Project Structure

practice-mcp-js/ ├── main.ts # Main server implementation ├── package.json # Project configuration and dependencies ├── package-lock.json # Dependency lock file └── README.md # This file

Dependencies

  • @modelcontextprotocol/sdk: Core MCP SDK for server implementation
  • zod: Schema validation library for input/output validation

API Integration

This project integrates with the following external APIs:

  1. Open-Meteo Geocoding API: For converting city names to coordinates
  2. Open-Meteo Weather API: For retrieving weather data and forecasts

How It Works

  1. The server creates an MCP server instance with the name "PRO INDUSTRIAL MCP SERVER"
  2. It defines a fetch-weather tool that:
    • Accepts a city name as input
    • Geocodes the city name to get coordinates
    • Fetches weather data using the coordinates
    • Returns formatted weather information
  3. The server connects via stdio transport for communication with AI assistants

Development

The main server logic is implemented in main.ts:7-55. Key components include:

  • Server initialization (main.ts:7-10)
  • Tool definition (main.ts:13-50)
  • Transport setup (main.ts:54-55)

Error Handling

The weather tool includes error handling for:

  • Cities that cannot be found
  • API request failures
  • Invalid input parameters (via Zod validation)

License

ISC

Contributing

This is a practice project for learning MCP server development. Feel free to fork and experiment with additional tools and features.

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Enables AI assistants to fetch current weather conditions and forecasts for any city using the Open-Meteo API. Provides temperature, precipitation, and hourly forecast data through natural language queries.

  1. Description
    1. Features
      1. Prerequisites
        1. Installation
          1. Usage
            1. Running the Server
            2. Available Tools
          2. Project Structure
            1. Dependencies
              1. API Integration
                1. How It Works
                  1. Development
                    1. Error Handling
                      1. License
                        1. Contributing

                          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/jefercort/practice-mcp-js'

                          If you have feedback or need assistance with the MCP directory API, please join our Discord server