Weather MCP Server

Weather MCP Server

MCP server that provides weather forecasting tools for Databricks Agent Bricks, including current conditions, forecasts, and umbrella recommendations using OpenMeteo.

Category
Visit Server

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

  1. 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
  2. get_current_weather(location) - Get current weather conditions

    • Real-time temperature, wind speed, and weather conditions
    • Includes location coordinates and timestamp
  3. 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

  1. Go to Apps in your Databricks workspace
  2. Click Create App
  3. Select this directory: /Users/madanadi0305@gmail.com/weather-mcp-server
  4. Databricks will automatically detect app.yaml and deploy

Register with Agent Bricks

Once deployed, register the MCP server with your Agent Bricks agent:

  1. Get the app URL from the Databricks Apps console
  2. In Agent Bricks, add external MCP server:
    • URL: https://<your-app-url>
    • Name: weather-mcp-server

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:

  1. Add the function to openmeteo_broker.py
  2. 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_URL is 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 RequestContextMiddleware is currently disabled due to FastMCP validation issues
  • This means user_email field in weather_mcp_traces table will be NULL
  • Impact: Cannot track which end-user made each MCP call
  • Status: Investigating FastMCP-compatible middleware approach

Workaround Options

  1. Add user context to tool parameters: Modify tools to accept optional user_email parameter
  2. Use session-based tracking: Track sessions instead of individual users
  3. 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 .env file 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-email from 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

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured