Weather MCP Server

get-forecast

Retrieve detailed weather forecasts for specific US locations using National Weather Service API data by inputting latitude and longitude coordinates.

Instructions

Get weather forecast for a location

Input Schema

NameRequiredDescriptionDefault
latitudeYesLatitude of the location
longitudeYesLongitude of the location

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "latitude": { "description": "Latitude of the location", "maximum": 90, "minimum": -90, "type": "number" }, "longitude": { "description": "Longitude of the location", "maximum": 180, "minimum": -180, "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }

You must be authenticated.

Other Tools from Weather MCP Server

Related Tools

ID: g9xlsrhp8g