bridgemcp-server-weather
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., "@bridgemcp-server-weatherWhat's the current weather in Tokyo?"
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.
bridgemcp-server-weather
The official BridgeMCP reference server — weather data via Open-Meteo.
No API key required.
This server demonstrates the recommended architecture for production-quality BridgeMCP servers. It is the first official server in the BridgeMCP ecosystem and is intended as a reference for all future official servers.
Tools
Tool | Description |
| Current temperature, humidity, wind, precipitation, and conditions |
| Multi-day forecast (1–16 days) with highs/lows, precipitation, and sunrise/sunset |
| Plain-language summary optimized for AI context windows |
All tools accept:
City name:
"London"City + country:
"Paris, France"Coordinates:
"51.5074,-0.1278"
Related MCP server: weather-forecast-server
Installation
pip install bridgemcp-server-weatherFor running as an MCP server (required for bridgemcp-weather CLI):
pip install 'bridgemcp-server-weather[mcp]'Usage
As an MCP server (stdio — for Claude Desktop, Cursor, etc.)
bridgemcp-weatherAs an MCP server (HTTP/SSE — for network clients)
bridgemcp-weather --http
bridgemcp-weather --http --host 0.0.0.0 --port 9000Programmatic use
from bridgemcp_weather import create_app
app = create_app()
# Call tools directly (useful in tests and scripts)
result = await app.acall("get_current_weather", location="Tokyo")
print(result["temperature_c"]) # 22.5
# Run as MCP server
app.run()Claude Desktop configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"weather": {
"command": "bridgemcp-weather"
}
}
}Architecture
This server is the reference implementation for BridgeMCP server architecture.
bridgemcp_weather/
├── __init__.py # Public API: create_app, WeatherPlugin
├── _version.py # Single version source of truth
├── server.py # BridgeMCP app + WeatherPlugin + CLI entry point
├── client.py # Pure async HTTP layer (no BridgeMCP types)
├── geocoding.py # Open-Meteo geocoding (city name → lat/lon)
├── models.py # Pydantic models + WMO code descriptions
└── exceptions.py # WeatherError, WeatherAPIError, GeocodingErrorKey design decisions
WeatherPlugin owns the httpx client lifecycle.
The httpx.AsyncClient is opened in on_startup and closed in on_shutdown. This is the correct BridgeMCP pattern for any plugin that owns async resources. The client is never a module-level global.
Tools are registered in WeatherPlugin.setup() (synchronously).
The BridgeMCP adapter builds the MCP server before startup hooks run. All tools must be registered before app.run() is called. setup() is the correct place.
The HTTP layer contains no BridgeMCP types.
client.py and geocoding.py accept an httpx.AsyncClient and raise WeatherError subclasses. They know nothing about BridgeMCP, InvocationContext, or MCP protocol types. This makes the HTTP layer independently testable and reusable.
Tools return dict from model.model_dump().
Tools never return JSON strings. Pydantic models are dumped to dicts at the tool boundary, preserving type information for BridgeMCP's schema generation.
Development
git clone https://github.com/Arsie-codes/bridgemcp-server-weather
cd bridgemcp-server-weather
pip install -e '.[dev]'
# Run tests
pytest tests/ -v
# Lint and format
ruff check bridgemcp_weather tests
black bridgemcp_weather tests
pyright bridgemcp_weatherEcosystem
Package | Description |
The BridgeMCP framework | |
Official logging plugin | |
bridgemcp-server-weather | This package — official weather reference server |
Official BridgeMCP Ecosystem
Framework
BridgeMCP https://github.com/Arsie-codes/bridgemcp
Official Plugins
bridgemcp-logging https://github.com/Arsie-codes/bridgemcp-logging
Official Servers
bridgemcp-server-weather https://github.com/Arsie-codes/bridgemcp-server-weather
More official plugins and servers are currently under development.
License
MIT — see LICENSE.
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.
Latest Blog Posts
- 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/Arsie-codes/bridgemcp-server-weather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server