mcp-server-poc

monil-patel/mcp-server-poc

3.1

If you are the rightful owner of mcp-server-poc and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Weather MCP Server is a tool that provides weather alerts and forecasts using the National Weather Service API.

Tools
2
Resources
0
Prompts
0

Weather MCP Server

This project is a Weather MCP (Model Context Protocol) Server that provides weather alerts and forecasts using the National Weather Service (NWS) API. It is implemented using the @modelcontextprotocol/sdk package.

Features

  • Get Weather Alerts: Retrieve active weather alerts for a specific U.S. state.
  • Get Weather Forecast: Retrieve weather forecasts for a specific location using latitude and longitude.

Prerequisites

  • Node.js (version 16 or higher)
  • Internet connection (to access the NWS API)

Installation

  1. Clone the repository:

    git clone <repository-url>
    cd weather
    
  2. Install dependencies:

    npm install
    

Tools

The server provides the following tools:

1. get-alerts
  • Description: Get weather alerts for a state.
  • Input:
    • state (string): Two-letter state code (e.g., CA, NY).
  • Output: Active weather alerts for the specified state.
2. get-forecast
  • Description: Get weather forecast for a location.
  • Input:
    • latitude (number): Latitude of the location.
    • longitude (number): Longitude of the location.
  • Output: Weather forecast for the specified location.

Development

Project Structure

  • src/index.ts: Main server implementation.
  • build/index.js: Compiled JavaScript output.

Scripts

  • npm start: Start the server.
  • npm run build: Compile TypeScript to JavaScript.

TypeScript Configuration

The project uses a tsconfig.json file for TypeScript configuration.

API Details

The server interacts with the National Weather Service (NWS) API. Below are the key endpoints used:

  • Alerts: https://api.weather.gov/alerts?area={state}
  • Points: https://api.weather.gov/points/{latitude},{longitude}
  • Forecast: URL provided by the Points API.

Error Handling

The server includes error handling for API requests. If an error occurs, a descriptive message will be returned.

License

This project is licensed under the MIT License.