Statistically rigorous weather and climate context: forecast plus 35-year historical ranking.
Statistically rigorous weather and climate context: forecast plus 35-year historical ranking. The baseline mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.
MCP server exposing Baseline as agent tools — statistically rigorous weather and climate context, not just current conditions. Thin translation layer only: no climate logic lives here, every tool call is an HTTP request to the Baseline API. See baseline_mcp_server_plan.md in the Baseline project for the full design, and METHODOLOGY.md for how the underlying data and rankings are computed.
Everything the assistant can do here goes through one of these:
get_climate_context — natural-language weather and climate questions, full context back (forecast + 35-year historical percentile ranking)get_context_for_coordinates — same, for an exact lat/lon rather than a place nameget_water_year_status — precipitation/temperature status since the start of the water year (Oct 1 US / Jan 1 elsewhere), ranked against 35 yearscompare_to_normal — how unusual current or forecast conditions are at one locationcompare_locations — rank precipitation or temperature across 2-10 locations (or a curated category like colorado_ski_resorts) in a single callInstallation goes through your MCP client rather than a global install: point it at baseline-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
You will need 2 environment variables: BASELINE_API_URL, BASELINE_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Baseline's toolset — get_climate_context, get_context_for_coordinates, get_water_year_status and 2 more — is a fair guide to whether it matches your workflow. It is maintained by elninyo-ops; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_climate_context | natural-language weather and climate questions, full context back (forecast + 35-year historical percentile ranking). |
| get_context_for_coordinates | same, for an exact lat/lon rather than a place name. |
| get_water_year_status | precipitation/temperature status since the start of the water year (Oct 1 US / Jan 1 elsewhere), ranked against 35 years. |
| compare_to_normal | how unusual current or forecast conditions are at one location. |
| compare_locations | rank precipitation or temperature across 2-10 locations (or a curated category like colorado_ski_resorts) in a single call. |
{
"mcpServers": {
"baseline": {
"command": "uvx",
"args": ["baseline-mcp"],
"env": {
"BASELINE_API_URL": "your-value",
"BASELINE_API_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| BASELINE_API_URL | Endpoint or connection string the server talks to. | Yes |
| BASELINE_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.