Weather Tools

Weather information and forecasting tools

Overview

Weather Tools is a production-ready Model Context Protocol (MCP) server built to give AI agents reliable, structured access to weather tools capabilities.

It acts as a standardized bridge between large language models and real-time data. Instead of relying on static training knowledge, models can retrieve live results, web content, and intelligence through a controlled MCP interface.

By integrating this MCP server, developers enable models such as Claude, GPT-4, Gemini, and open-source LLMs to:

• Execute structured Weather Tools queries • Access live data in real time • Retrieve specialized information programmatically • Ground responses in verifiable external sources

This architecture significantly improves factual accuracy, reduces hallucination risk, and expands what AI systems can accomplish in research, automation, monitoring, and decision-support workflows.

Weather Tools is designed for teams building production AI agents that require dependable, real-time access to the weather within a standardized MCP ecosystem.

Highlights

Protocol
MCP v1.0
Security
OAuth 2.0
Access
Real-time
Tools
3 Tools

Standardized bridge for real-time model context.

Installation

Connect this server to your local or remote agent environment.

mcp_config.json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://connect.mcp360.ai/v1/weather/mcp?token=YOUR_API_KEY"
      ]
    }
  }
}
Replace YOUR_API_KEY with your actual key from the dashboard.

Skills & Capabilities

What this MCP server can do for your AI agents.

CAPABILITIES
--- name: weather description: Access real-time weather conditions, detailed forecasts, and historical weather data for any location worldwide. Use when users need current weather updates, planning trips with forecast data, analyzing weather patterns, checking conditions for outdoor activities, or researching historical climate information. metadata: author: MCP360 version: "1.0.0" tags: - Weather - Forecast - Climate - Temperature - Real-time Data - Meteorology - Travel Planning - Environmental keywords: - weather - forecast - temperature - climate - rain - snow - wind - humidity - pressure - storm - conditions - meteorology - precipitation - UV index creditsPerUse: 1 isPremium: false --- # Weather Tools Comprehensive meteorological data service providing accurate real-time weather conditions, multi-day forecasts, and historical climate analysis. Access professional-grade weather intelligence for any location using coordinates or city names across 200,000+ cities worldwide. ## Core Capabilities - **Current Weather**: Get instant real-time weather conditions including temperature, feels-like temperature, humidity, wind speed/direction, atmospheric pressure, visibility, and weather descriptions, and returns detailed current conditions with location coordinates and timezone information - **Weather Forecast**: Retrieve 7-day weather predictions with daily high/low temperatures, precipitation probability, wind patterns, and hourly breakdowns, and returns comprehensive forecast data with sunrise/sunset times and weather alerts for planning activities - **Historical Weather**: Access past weather data for any date range with daily summaries or hourly granularity, and returns temperature records, precipitation amounts, wind statistics, and atmospheric conditions for climate analysis and research ## API Access ### MCP360 Connect Endpoints - **Base URL**: `https://connect.mcp360.ai/api/v1` - **Service Path**: `weather` - **Authentication**: Bearer token (API key required) ### Service Metadata Endpoint Retrieve service information and available tools: ```bash curl "https://connect.mcp360.ai/api/v1/weather" \ -H "Authorization: Bearer YOUR_API_KEY" ``` ### Tool Execution Endpoint Execute specific tools by making POST requests: ```bash curl -X POST "https://connect.mcp360.ai/api/v1/weather/{tool_name}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{...parameters...}' ``` ## Available Tools ### Get Current Weather Retrieve real-time weather conditions for any location using either geographic coordinates or city name with state and country. **Tool Name:** `get_current_weather` **Credits Required:** 1 **Parameters:** - `latitude` (number, optional): Geographic latitude from -90 to 90 like 40.7128 for New York City - `longitude` (number, optional): Geographic longitude from -180 to 180 like -74.0060 for New York City - `city` (string, optional): City name like "Tokyo", "San Francisco", or "London" - `state` (string, optional): US state code for disambiguation like "CA", "NY", "TX" (for US cities only) - `country` (string, optional): Country name or ISO code like "United States", "UK", "Japan", "US" **Note:** Provide either coordinates (latitude + longitude) OR city name. Coordinates are more precise for exact locations. **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/weather/get_current_weather" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "city": "Seattle", "state": "WA", "country": "United States" }' ``` ### Get Weather Forecast Obtain detailed weather predictions for the next 7 days including temperature trends, precipitation forecasts, and hourly data. **Tool Name:** `get_weather_forecast` **Credits Required:** 1 **Parameters:** - `latitude` (number, optional): Geographic latitude from -90 to 90 like 37.7749 for San Francisco - `longitude` (number, optional): Geographic longitude from -180 to 180 like -122.4194 for San Francisco - `city` (string, optional): City name like "Paris", "Sydney", or "Dubai" - `state` (string, optional): US state code for US cities like "FL", "IL", "CO" - `country` (string, optional): Country name or ISO code like "France", "Australia", "FR" **Note:** Provide either coordinates OR city name for location specification. **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/weather/get_weather_forecast" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "latitude": 51.5074, "longitude": -0.1278 }' ``` ### Get Historical Weather Access archived weather data for any past date range with options for daily summaries or detailed hourly measurements. **Tool Name:** `get_historical_weather` **Credits Required:** 1 **Parameters:** - `latitude` (number, required): Geographic latitude from -90 to 90 like 35.6762 for Tokyo - `longitude` (number, required): Geographic longitude from -180 to 180 like 139.6503 for Tokyo - `start_date` (string, required): Beginning date in YYYY-MM-DD format like "2024-01-01" or "2023-12-15" - `end_date` (string, required): Ending date in YYYY-MM-DD format like "2024-01-31" or "2023-12-31" - `include_hourly` (boolean, required): Set to true for hourly data points, false for daily summaries only **Note:** Historical data is available from 1979 to present. Maximum range is 366 days per request. **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/weather/get_historical_weather" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "latitude": 40.7128, "longitude": -74.0060, "start_date": "2024-01-01", "end_date": "2024-01-31", "include_hourly": false }' ``` ## Authentication All API requests require a Bearer token for authentication: ```bash -H "Authorization: Bearer YOUR_API_KEY" ``` ## Rate Limiting - All tools (get_current_weather, get_weather_forecast, get_historical_weather): 1 credit per request - Rate limit: 1000 requests per hour - Concurrent requests: Up to 10 parallel calls - Data updates: Current weather updates every 10 minutes ## Support - **Blog & Tutorials**: https://mcp360.ai/blog - **Contact**: https://mcp360.ai/contact
These capabilities are available through the MCP protocol interface.

Available Tools

Technical specifications for the 3 available protocol tools.

3 tools

get_current_weather tool

Input Specification
{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "City name"
    },
    "state": {
      "type": "string",
      "description": "US state (for US cities)"
    },
    "country": {
      "type": "string",
      "description": "Country name"
    },
    "latitude": {
      "type": "number",
      "description": "Latitude coordinate"
    },
    "longitude": {
      "type": "number",
      "description": "Longitude coordinate"
    }
  },
  "additionalProperties": false
}
Output Response
{
  "type": "object",
  "properties": {
    "temp": {
      "type": "number"
    },
    "sunset": {
      "type": "number"
    },
    "sunrise": {
      "type": "number"
    },
    "humidity": {
      "type": "number"
    },
    "max_temp": {
      "type": "number"
    },
    "min_temp": {
      "type": "number"
    },
    "cloud_pct": {
      "type": "number"
    },
    "feels_like": {
      "type": "number"
    },
    "wind_speed": {
      "type": "number"
    },
    "wind_degrees": {
      "type": "number"
    }
  }
}

Direct API Access

Production-ready REST endpoints for custom integrations.

POSTServer Metadata
/api/v1/weather
curl "https://connect.mcp360.ai/api/v1/weather" \
  -H "Authorization: Bearer YOUR_API_KEY"
POSTExecute Tool
/api/v1/weather/{tool_name}
curl -X POST "https://connect.mcp360.ai/api/v1/weather/get_current_weather" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Authentication

To authenticate, include your API key in the Authorization header using the Bearer scheme. Alternatively, you can use the X-API-KEY header.

Infrastructure

Unified MCP Gateway

One hub for 100+ production-ready tools with centralized management.

Unified API Key

Access 100+ MCP servers with a single authentication token.

Instant Testing

Test and debug any MCP server instantly in our integrated environment.

Centralized Billing

One monthly subscription for all your AI tool integrations and credits.

Real-World Applications

Practical Use Cases

Discover how Weather Tools solves real problems and drives measurable results across different scenarios

Event Planning

Check weather forecasts to plan outdoor events and prepare contingencies

Example

"Check 10-day forecast for your outdoor wedding to plan backup plans"

Key Benefits

  • Better planning
  • Guest comfort
  • Cost optimization

Travel Planning

Get weather forecasts for destinations to pack appropriately and plan activities

Example

"Check weather in Bali before booking to avoid monsoon season"

Key Benefits

  • Better preparation
  • Activity planning
  • Cost savings

Retail Demand Forecasting

Predict product demand based on weather patterns

Example

"Stock up on umbrellas when rain is forecasted for next week"

Key Benefits

  • Better inventory
  • Higher sales
  • Reduced waste

Agricultural Planning

Monitor weather for farming, planting, and harvest decisions

Example

"Check rainfall patterns and forecasts for irrigation planning"

Key Benefits

  • Better yields
  • Resource optimization
  • Risk reduction

Delivery & Logistics Planning

Adjust delivery routes and schedules based on weather conditions

Example

"Route deliveries around expected snow to ensure on-time delivery"

Key Benefits

  • Reliability
  • Cost efficiency
  • Customer satisfaction

Frequently Asked Questions

What is Weather Tools?

Weather Tools is an MCP server that provides structured access to weather tools capabilities through a standardized protocol, enabling AI models to retrieve and process real-time data.

Which AI models are supported?

Any model that supports MCP protocol including Claude (via Claude Desktop), GPT-4, Gemini, and open-source LLMs through compatible frameworks.

How do I authenticate?

The server supports OAuth 2.0 authentication with API keys. You'll receive credentials upon registration which can be configured in your MCP client.

Is there rate limiting?

Yes, rate limits apply based on your subscription tier. Free tier includes generous limits for development, with higher limits available in paid plans.

Can I use this in production?

Absolutely. Weather Tools is designed for production use with enterprise-grade reliability, security, and performance.

Deploy AI agent with Weather Tools today.

Start building production-ready AI agent integrations in minutes with standardized protocol access.

Enterprise Ready
Secure OAuth
24/7 Support