Weather MCP Server
MCP server that provides weather forecasting tools for Databricks Agent Bricks, including current conditions, forecasts, and umbrella recommendations using OpenMeteo.
README
Weather MCP Server
A Model Context Protocol (MCP) server that exposes weather forecasting tools for Databricks Agent Bricks. Built with FastMCP and OpenMeteo's free weather API.
Features
MCP Tools
-
get_forecast(location, days) - Get hourly weather forecast for the next X days
- Temperature, humidity, and wind speed data
- Returns structured data with coordinates and forecast period
-
get_current_weather(location) - Get current weather conditions
- Real-time temperature, wind speed, and weather conditions
- Includes location coordinates and timestamp
-
predict_umbrella_needed(location, date) - Intelligent umbrella recommendation
- Analyzes precipitation probability, rainfall amount, and duration
- Returns YES/MAYBE/NO recommendation with detailed reasoning
- Includes confidence level (high/medium/low)
Additional Features
- Automatic tracing - All MCP calls are logged to Lakebase with session IDs, timing, and results
- User identity tracking - Captures end-user email from Databricks App headers
- Error handling - Comprehensive error handling with structured error responses
- Geocoding - Automatic city name to coordinates conversion using OpenStreetMap
Project Structure
weather-mcp-server/
├── mcp_server/
│ ├── openmeteo_mcp_server.py # FastMCP server with tool definitions
│ ├── openmeteo_broker.py # Weather API client functions
│ ├── lakebase.py # Database connection utilities
│ ├── app.yaml # Databricks App configuration
│ └── requirements.txt # Python dependencies
├── .env # Environment variables (not in git)
└── README.md # This file
Setup
1. Install Dependencies
pip install -r requirements.txt
2. Configure Environment Variables
Create a .env file in the project root:
LAKEBASE_URL="postgresql://user:password@host.cloud.databricks.com/databricks_postgres?sslmode=require"
3. Test Locally
python -m mcp_server.openmeteo_mcp_server
The server will start on port 8000 and initialize the weather_mcp_traces table in Lakebase.
Deployment as Databricks App
Option 1: Using Databricks CLI
# Ensure LAKEBASE_URL is set in your environment
export LAKEBASE_URL="your-connection-string"
# Deploy the app
databricks apps deploy weather-mcp-server
Option 2: Using Databricks Workspace UI
- Go to Apps in your Databricks workspace
- Click Create App
- Select this directory:
/Users/madanadi0305@gmail.com/weather-mcp-server - Databricks will automatically detect
app.yamland deploy
Register with Agent Bricks
Once deployed, register the MCP server with your Agent Bricks agent:
- Get the app URL from the Databricks Apps console
- In Agent Bricks, add external MCP server:
- URL:
https://<your-app-url> - Name:
weather-mcp-server
- URL:
Usage Examples
Get 7-Day Forecast
result = get_forecast("London", 7)
print(result["location"]) # "London"
print(result["coordinates"]) # {"latitude": 51.5074, "longitude": -0.1278}
print(result["data"]["hourly"]["temperature_2m"][0]) # 15.2
Get Current Weather
result = get_current_weather("Tokyo")
current = result["data"]["current_weather"]
print(f"Temperature: {current['temperature']}°C") # Temperature: 18.5°C
Check If Umbrella Needed
result = predict_umbrella_needed("Seattle", "2024-03-20")
print(result["recommendation"]) # "YES - Bring an umbrella ☔"
print(result["reasoning"]) # "High precipitation probability (85%)..."
print(result["confidence"]) # "high"
Database Schema
The server automatically creates a weather_mcp_traces table in Lakebase:
CREATE TABLE weather_mcp_traces (
session_id VARCHAR(36) PRIMARY KEY,
tool_name VARCHAR(100) NOT NULL,
user_email VARCHAR(255),
input_params JSONB,
start_time TIMESTAMP NOT NULL,
end_time TIMESTAMP,
duration_ms INTEGER,
status VARCHAR(20),
error_message TEXT,
result_summary JSONB,
created_at TIMESTAMP DEFAULT NOW()
)
API Documentation
OpenMeteo API
This server uses two OpenMeteo endpoints:
- Current Weather:
https://api.open-meteo.com/v1/forecast - Forecast:
https://historical-forecast-api.open-meteo.com/v1/forecast
Both are free and require no API key.
Geocoding
City-to-coordinates conversion uses OpenStreetMap's Nominatim API:
- Endpoint:
https://nominatim.openstreetmap.org/search - Free, no API key required
- Respects usage policies with proper User-Agent header
Development
Running Tests
# Test database connection
python mcp_server/lakebase.py
# Test weather API functions
python mcp_server/openmeteo_broker.py
Adding New Tools
To add a new MCP tool:
- Add the function to
openmeteo_broker.py - Wrap it as an MCP tool in
openmeteo_mcp_server.py:
@mcp.tool
@trace_mcp_call
def my_new_tool(param: str) -> dict:
"""Tool description for Agent Bricks."""
return openmeteo_broker.my_new_function(param)
Troubleshooting
Connection Issues
- Verify
LAKEBASE_URLis set correctly in.env - Test connection:
python mcp_server/lakebase.py - Check firewall/security group settings
Import Errors
- Ensure all dependencies are installed:
pip install -r requirements.txt - Verify you're in the correct directory when running
MCP Server Not Responding
- Check logs in Databricks Apps console
- Verify port 8000 is accessible
- Test locally first before deploying
Known Issues
User Identity Tracking
- The
RequestContextMiddlewareis currently disabled due to FastMCP validation issues - This means
user_emailfield inweather_mcp_tracestable will be NULL - Impact: Cannot track which end-user made each MCP call
- Status: Investigating FastMCP-compatible middleware approach
Workaround Options
- Add user context to tool parameters: Modify tools to accept optional
user_emailparameter - Use session-based tracking: Track sessions instead of individual users
- Wait for FastMCP middleware fix: Monitor FastMCP updates for middleware compatibility
Performance Notes
- Geocoding cache: City-to-coordinates lookups are cached in memory for the app lifetime
- API rate limits: OpenMeteo and Nominatim are free services with fair-use policies
- Database performance: Each MCP call writes one trace record to Lakebase (async recommended)
Security Considerations
- LAKEBASE_URL: Contains database credentials - keep
.envfile secure and out of version control - MCP endpoint: Publicly accessible at
/mcp- authentication handled by Databricks Apps OAuth - User headers: The app receives
x-forwarded-emailfrom Databricks - trust this for identity
Next Steps
- [ ] Re-enable user tracking with FastMCP-compatible middleware
- [ ] Add caching layer for weather API responses
- [ ] Implement additional weather tools (air quality, UV index, etc.)
- [ ] Add monitoring and alerting for API failures
- [ ] Create automated tests for all three tools
License
MIT License - see LICENSE file for details
Contributing
Contributions welcome! Please open an issue or pull request.
Support
For issues or questions:
- Check the Troubleshooting section above
- Review logs:
databricks apps logs mcp-server-openmeteo-weather - Open an issue in the project repository
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.