weather-mcp-server
Provides weather forecast tools (current conditions, multi-day forecasts, umbrella recommendations) that can be used within Databricks Agent Bricks for natural-language weather queries.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@weather-mcp-serverWill it rain in Chicago tomorrow?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Weather Prediction MCP Server + Agent Bricks
A Model Context Protocol (MCP) server that exposes weather forecast tools, integrated with Databricks Agent Bricks for natural-language weather queries.
Architecture
┌─────────────────────────────────────┐
│ User Question │
│ "Will it rain in Chicago tomorrow?"│
└───────────────┬─────────────────────┘
│
v
┌─────────────────────────────────────┐
│ Agent Bricks Agent │
│ (Databricks AI) │
│ - Interprets question │
│ - Selects appropriate tools │
│ - Formats natural-language answer │
└───────────────┬─────────────────────┘
│
v
┌─────────────────────────────────────┐
│ Weather MCP Server │
│ (FastMCP, Databricks App) │
│ Tools: │
│ - get_current_weather() │
│ - get_forecast() │
│ - predict_umbrella_needed() │
└───────────────┬─────────────────────┘
│
v
┌─────────────────────────────────────┐
│ Open-Meteo API │
│ (Free weather data, no auth) │
│ - Geocoding │
│ - Current conditions │
│ - Forecast data │
└─────────────────────────────────────┘Related MCP server: Weather Prediction MCP Server
Components
1. Weather MCP Server (weather_mcp_server/)
A FastMCP server deployed as a Databricks App that exposes three weather tools:
Tools:
get_current_weather(location)- Real-time weather conditionsReturns: temperature, humidity, wind speed, conditions
Example:
get_current_weather("Chicago")
get_forecast(location, days=7)- Multi-day forecast (1-16 days)Returns: daily high/low temps, precipitation chance, conditions
Example:
get_forecast("Austin, TX", days=5)
predict_umbrella_needed(location, target_date=None)- Smart recommendationDecision logic: Umbrella needed if precipitation > 40% OR rain-related conditions
Returns: boolean recommendation + reasoning
Example:
predict_umbrella_needed("Seattle", "2026-08-10")
2. Weather Broker (weather_broker.py)
Adapter module for Open-Meteo API:
get_current_conditions()- Fetches current weatherget_multi_day_forecast()- Fetches forecast data_geocode_location()- Converts city names to lat/lon_map_weather_code()- Translates WMO codes to human-readable conditions
API Choice: Open-Meteo
Free and open source
No API key required
~10,000 calls/day
High-quality data from official weather services
3. Agent Bricks Agent
A Databricks AI agent configured with:
System prompt explaining weather-answering capabilities
External MCP tool registration pointing to the deployed MCP server
Natural-language interface for weather questions
Setup Instructions
Step 1: Deploy MCP Server
Create Databricks secret (if not exists):
databricks secrets create-scope mcp_server databricks secrets put-secret mcp_server databricks_token(Paste your Databricks token when prompted)
Deploy the app from GitHub:
databricks apps create weather-mcp-server \ --source-code-url https://github.com/amalphonse/weather-mcp-server.gitStart the app:
databricks apps start weather-mcp-serverGet the app URL:
databricks apps get weather-mcp-serverNote the
urlfield - you'll need this for Agent Bricks.
Step 2: Register MCP Server with Agent Bricks
Navigate to the Agent Bricks UI in Databricks
Create a new agent or edit an existing one
Under "External Tools", add a new MCP server:
Name: Weather Forecast Server
URL:
<your-app-url>(from Step 1)Description: Provides weather forecasts and recommendations
Step 3: Configure Agent System Prompt
Add this system prompt to your agent:
You are a helpful weather assistant with access to real-time weather data through an MCP server.
Your capabilities:
- Get current weather conditions for any location
- Provide multi-day weather forecasts (up to 16 days)
- Make practical recommendations about umbrellas and weather preparation
Available tools:
1. get_current_weather(location) - Use for "now", "current", or "today" questions
2. get_forecast(location, days) - Use for future dates or multi-day forecasts
3. predict_umbrella_needed(location, target_date) - Use when asked about rain gear or travel preparation
Guidelines:
- ALWAYS use the weather tools to get real data - never guess or make up weather information
- If a location cannot be found, ask the user to clarify or try a more specific location
- If the API fails, inform the user clearly and suggest trying again
- When making recommendations, explain your reasoning based on the data
- For precipitation, consider both the percentage chance and the forecasted conditions
- Be conversational and helpful, but always ground your responses in the actual weather data
Example interactions:
- "What's the weather in Chicago?" → Use get_current_weather
- "Will it rain in Seattle this weekend?" → Use get_forecast for the next few days
- "Should I bring an umbrella to Austin tomorrow?" → Use predict_umbrella_neededStep 4: Test the Agent
Try these example queries:
Current conditions: "What's the weather like in Chicago right now?"
Forecast: "Will it be hot in Austin this weekend?"
Recommendation: "Should I bring an umbrella to Seattle tomorrow?"
Example Agent Conversations
Example 1: Current Weather Query
User: "What's the weather like in Chicago right now?"
Tool Call: get_current_weather("Chicago")
Tool Response:
{
"success": true,
"data": {
"location": "Chicago",
"temperature_f": 68.5,
"temperature_c": 20.3,
"conditions": "Partly cloudy",
"humidity": 62,
"wind_speed_mph": 8.2,
"last_updated": "2026-08-09T15:30:00"
}
}Agent Response: "In Chicago right now, it's 68.5°F (20.3°C) with partly cloudy skies. The humidity is 62% and there's a light breeze at 8.2 mph. Pleasant conditions overall!"
Example 2: Multi-Day Forecast
User: "Will it rain in Seattle this weekend?"
Tool Call: get_forecast("Seattle", days=5)
Tool Response:
{
"success": true,
"data": {
"location": "Seattle",
"forecast": [
{
"date": "2026-08-10",
"temp_high_f": 69,
"temp_low_f": 56,
"precipitation_chance": 65,
"conditions": "Moderate rain"
},
{
"date": "2026-08-11",
"temp_high_f": 67,
"temp_low_f": 55,
"precipitation_chance": 45,
"conditions": "Light drizzle"
}
]
}
}Agent Response: "Yes, it will likely rain in Seattle this weekend. Saturday (Aug 10) shows a 65% chance of moderate rain with temperatures between 56-69°F. Sunday (Aug 11) also has a 45% chance of light drizzle. I'd definitely recommend bringing rain gear if you have outdoor plans!"
Example 3: Practical Recommendation
User: "Should I bring an umbrella to Austin tomorrow?"
Tool Call: predict_umbrella_needed("Austin", target_date="2026-08-10")
Tool Response:
{
"success": true,
"data": {
"location": "Austin",
"date": "2026-08-10",
"umbrella_needed": false,
"reasoning": "No umbrella needed. Precipitation chance is only 15% and conditions are 'Mainly clear'.",
"precipitation_chance": 15,
"conditions": "Mainly clear",
"temp_high_f": 95,
"temp_low_f": 76
}
}Agent Response: "No need for an umbrella in Austin tomorrow. The forecast shows mainly clear skies with only a 15% chance of precipitation. It will be hot though - expect temperatures to reach 95°F with a low of 76°F, so you might want to bring sunscreen and stay hydrated instead!"
Example 4: Error Handling
User: "What's the weather in Atlantis?"
Tool Call: get_current_weather("Atlantis")
Tool Response:
{
"success": false,
"error": "Location 'Atlantis' not found"
}Agent Response: "I couldn't find a location called 'Atlantis' in the weather database. Could you please clarify the location? If you meant a specific city, try providing more details like the state or country (e.g., 'Atlanta, Georgia' or 'Atlantic City, New Jersey')."
Files
app.yaml- Databricks App configurationrequirements.txt- Python dependenciesweather_mcp_server.py- FastMCP server with tool definitionsweather_broker.py- Open-Meteo API adapterREADME.md- This file.gitignore- Git ignore rules
Dependencies
fastmcp>=0.4.0- MCP server frameworkfastapi>=0.115.0- Web frameworkuvicorn>=0.32.0- ASGI serverrequests>=2.32.0- HTTP clientdatabricks-sdk>=0.35.0- Secrets management
Error Handling
Location not found: Returns clear error asking user to clarify
API outage: Returns error message explaining the service is unavailable
Invalid date range: Returns error with valid date range
Network timeout: 10-second timeout with error message
Notes
Open-Meteo is free for non-commercial use (~10k calls/day)
No API key required - zero credentials to manage
Data sourced from official weather services (NOAA, DWD, etc.)
Forecast accuracy: Best within 7 days, still useful up to 16 days
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceMCP server exposing weather tools (current conditions, forecasts, umbrella prediction, travel advice, city comparisons) via Open-Meteo, designed for integration with Databricks Agent Bricks.
- FlicenseNot gradedqualityBmaintenanceAn MCP server that provides real-time weather data and forecasts via Open-Meteo, with tools for current conditions, multi-day forecasts, umbrella predictions, and travel recommendations.
- FlicenseNot gradedqualityBmaintenanceAn MCP server that provides weather forecast tools (current weather, forecast, travel recommendations, and city comparison) powered by Open-Meteo, designed for Databricks Agent Bricks.
- FlicenseNot gradedqualityCmaintenanceThis MCP server provides real-time weather data, multi-day forecasts, and umbrella recommendations using the Open-Meteo API. It enables natural-language queries about current conditions, future forecasts, and precipitation-based advice.
Related MCP Connectors
MCP server for weather with reasoning — umbrella advice, outdoor checks, city comparisons.
MCP server for AI dialogue using various LLM models via AceDataCloud
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/amalphonse/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server