AI-Hydro: hydrological research tools as an MCP server for AI agents
Project description
aihydro-tools
Stop writing plumbing. Give AI agents real hydrological superpowers.
What is aihydro-tools?
aihydro-tools is the Python backbone of the AI-Hydro platform. It turns a conversation with an AI agent into real hydrological computation — watershed delineation, streamflow retrieval, signature extraction, terrain analysis, and model calibration — with full structured provenance recorded automatically at every step.
Tools are exposed via the Model Context Protocol (MCP), the open standard for agent-tool communication. Any AI model that supports MCP — Claude, GPT, Gemini — can call these tools directly, without writing a single line of processing code. And because aihydro-tools is built as a community platform, any researcher can register domain-specific tools (flood frequency, sediment transport, groundwater, remote sensing) via Python entry points, extending the ecosystem without touching the core.
Quick Start
# Install
pip install aihydro-tools[all]
# Verify
aihydro-mcp --diagnose
# Run the server
aihydro-mcp
The AI-Hydro VS Code extension auto-detects aihydro-mcp on startup — no manual configuration needed.
Built-in Tools
Analysis Tools
| Category | Tool | Description |
|---|---|---|
| Watershed | delineate_watershed |
NHDPlus watershed delineation from USGS NLDI given a gauge ID |
| Streamflow | fetch_streamflow_data |
Daily discharge time series from USGS NWIS |
| Signatures | extract_hydrological_signatures |
15+ flow statistics: BFI, runoff ratio, FDC percentiles, recession constants |
| Geomorphic | extract_geomorphic_parameters |
28 basin morphometry metrics (area, slope, elevation, shape factors) |
| Terrain | compute_twi |
Topographic Wetness Index from 3DEP 10m DEM |
| Curve Number | create_cn_grid |
NRCS Curve Number grid from NLCD land cover + Polaris soils |
| Forcing | fetch_forcing_data |
Basin-averaged GridMET climate data (prcp, tmax, tmin, PET, srad, wind) |
| CAMELS | extract_camels_attributes |
Full CAMELS-US attribute set (671 gauges) via pygeohydro |
| Modelling | train_hydro_model |
Differentiable HBV-light (PyTorch) or NeuralHydrology LSTM |
| Modelling | get_model_results |
Retrieve cached model performance (NSE, KGE, RMSE) |
| Session | start_session |
Initialize or resume a per-gauge research session |
| Session | get_session_summary |
Overview of computed and pending analysis slots |
| Session | clear_session |
Reset cached results to force re-computation |
| Session | add_note |
Attach research notes to the session |
| Session | export_session |
Export a citable methods paragraph for manuscripts |
| Session | sync_research_context |
Refresh AI context with current session state |
Project, Literature & Researcher Memory
| Category | Tool | Description |
|---|---|---|
| Project | start_project |
Create or resume a named research project spanning multiple gauges or topics |
| Project | get_project_summary |
Overview of all gauges, journal entries, literature, and metrics in a project |
| Project | add_gauge_to_project |
Associate a gauge session with the active project |
| Project | search_experiments |
Full-text search across all gauge sessions in a project |
| Literature | index_literature |
Scan a folder of PDF, txt, or md files and build a searchable text index |
| Literature | search_literature |
Query the index and return excerpts for the agent to synthesise |
| Literature | add_journal_entry |
Log a timestamped experiment note to the project journal |
| Persona | get_researcher_profile |
Retrieve the persistent researcher profile (expertise, focus, preferences) |
| Persona | update_researcher_profile |
Update profile fields — agent or researcher driven |
| Persona | log_researcher_observation |
Record an observation about the researcher's evolving interests and methods |
Community plugins can add further tools via the entry-point system (see below).
Data Sources
All data is fetched from authoritative federal sources:
- USGS NWIS — daily streamflow via dataretrieval (official USGS Python client)
- NHDPlus / NLDI — watershed delineation via pynhd
- GridMET — climate forcing via pygridmet
- 3DEP — DEM and terrain analysis via py3dep
- NLCD — land cover classification
- POLARIS — soil properties
- CAMELS-US — catchment attributes via pygeohydro
Memory & Provenance
AI-Hydro maintains a three-tier memory hierarchy so research context survives between conversations, sessions, and projects.
HydroSession — per-gauge state at ~/.aihydro/sessions/<gauge_id>.json. Expensive computations (watershed delineation, multi-year streamflow downloads) are done once and reused across days or weeks. Every result carries structured provenance metadata — data source, parameters, timestamp — making reproducibility a natural byproduct rather than a documentation chore.
ProjectSession — project-scoped state at ~/.aihydro/projects/<name>/project.json. Organises research across multiple gauges, topics, or datasets. Supports cross-session experiment search, a timestamped journal, and literature indexing.
ResearcherProfile — a persistent persona at ~/.aihydro/researcher.json. Built up from agent-researcher interactions over time: expertise areas, preferred models, active projects, and accumulated observations. Injected into every conversation automatically so the agent knows who it is working with.
Extending with Plugins
aihydro-tools is a platform, not a closed product. Any researcher can package domain knowledge as a plugin and make it immediately available to every AI agent that uses AI-Hydro — flood frequency analysis, sediment transport, groundwater modelling, remote sensing workflows, or anything else the core doesn't yet cover.
Entry-point plugins load into the same process with full access to HydroSession and cached data:
# In your package's pyproject.toml
[project.entry-points."aihydro.tools"]
my_tool = "my_package.tools:my_tool_function"
Install the package, restart the server, and the tool is automatically discovered — no changes to the core required.
Standalone MCP servers let you build fully independent toolkits with their own dependencies, registered alongside the core ai-hydro server.
See the Plugin Guide for complete walkthroughs of both paths, the data contract, and session integration.
Use as a Python Library
You don't need an AI agent to benefit from aihydro-tools. Every tool is a regular Python function — import and call directly in scripts, notebooks, or pipelines:
from ai_hydro.analysis.watershed import delineate_watershed
from ai_hydro.data.streamflow import fetch_streamflow_data
from ai_hydro.analysis.signatures import extract_hydrological_signatures
# Delineate a watershed
ws = delineate_watershed("01031500")
print(f"Watershed area: {ws.data['area_km2']} km2")
# Fetch streamflow
sf = fetch_streamflow_data("01031500", start_date="2015-01-01", end_date="2024-12-31")
print(f"Records: {len(sf.data['dates'])} days")
# Extract signatures
sigs = extract_hydrological_signatures("01031500")
print(f"Baseflow index: {sigs.data['baseflow_index']}")
All functions return HydroResult objects with .data (dict) and .meta (provenance metadata).
Installation Details
Extras
Install only what you need:
| Extra | What it adds | Install command |
|---|---|---|
[data] |
Streamflow, forcing, land cover, soil, CAMELS retrieval | pip install aihydro-tools[data] |
[analysis] |
Watershed, signatures, TWI, geomorphic, curve number | pip install aihydro-tools[analysis] |
[modelling] |
PyTorch differentiable HBV-light, NeuralHydrology LSTM | pip install aihydro-tools[modelling] |
[viz] |
Matplotlib, Plotly, Folium visualisations | pip install aihydro-tools[viz] |
[all] |
Everything above | pip install aihydro-tools[all] |
PATH Troubleshooting
If aihydro-mcp is not found after install, pip placed it outside your PATH:
| OS | Typical location |
|---|---|
| Windows (user) | %APPDATA%\Python\Python3XX\Scripts\aihydro-mcp.exe |
| Windows (system) | C:\Python3XX\Scripts\aihydro-mcp.exe |
| macOS/Linux (user) | ~/.local/bin/aihydro-mcp |
| macOS/Linux (system) | /usr/local/bin/aihydro-mcp |
| Conda | ~/miniconda3/bin/aihydro-mcp or ~/anaconda3/bin/aihydro-mcp |
Universal fallback: python -m ai_hydro.mcp works regardless of PATH. The AI-Hydro extension auto-detects both the console script and the module fallback.
Contributing
The most impactful contributions to AI-Hydro are new domain tools — knowledge that currently lives in papers and custom scripts, packaged so any AI agent can use it. High-priority areas include flood frequency analysis, sediment transport, groundwater modelling, remote sensing workflows (MODIS, Landsat, SAR), snow hydrology, and water quality.
You don't need to fork the core. Write a Python package, register an entry point, publish to PyPI. That's it.
- Contributing Guide — Development setup, code style, testing
- Plugin Guide — Step-by-step walkthroughs for both contribution paths
Citation
If you use aihydro-tools in your research, please cite:
@software{aihydro_tools_2026,
title = {aihydro-tools: Python MCP Server for AI-Automated Hydrological Research},
author = {Galib, Mohammad and Merwade, Venkatesh},
year = {2026},
version = {1.2.1},
doi = {10.5281/zenodo.19597589},
url = {https://doi.org/10.5281/zenodo.19597589}
}
For the VS Code extension, cite:
@software{aihydro_extension_2026,
title = {AI-Hydro: An Open Platform for Autonomous Hydrological and Earth Science Research(VS Code Extension)},
author = {Galib, Mohammad and Merwade, Venkatesh},
year = {2026},
version = {0.1.3},
doi = {10.5281/zenodo.19597664},
url = {https://doi.org/10.5281/zenodo.19597664}
}
Links
- Documentation: ai-hydro.github.io/AI-Hydro
- AI-Hydro Extension: github.com/AI-Hydro/AI-Hydro
- PyPI: pypi.org/project/aihydro-tools
- YouTube: AI-Hydro Channel
- X / Twitter: @aihydro
- Issues: github.com/AI-Hydro/aihydro-tools/issues
License
Apache 2.0 © 2026 Mohammad Galib
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aihydro_tools-1.4.0.tar.gz.
File metadata
- Download URL: aihydro_tools-1.4.0.tar.gz
- Upload date:
- Size: 136.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29e98b441a313fccd56ce96142e7ea47f2ed942df9c16cd376513ec2014958d1
|
|
| MD5 |
d71f203f7206b7ff780bd00dddaac275
|
|
| BLAKE2b-256 |
917c7e590a4e9327d7169c594a8898d0e65b646fb361644ad21f7d66f4ef70c3
|
File details
Details for the file aihydro_tools-1.4.0-py3-none-any.whl.
File metadata
- Download URL: aihydro_tools-1.4.0-py3-none-any.whl
- Upload date:
- Size: 145.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b543261bf8a7398903fa35c9694182e5e42ea9bfdfdfcea761a2ea0dda04739
|
|
| MD5 |
282e2a2abdbd089defda32bdff45d916
|
|
| BLAKE2b-256 |
92bc0c446a835bcfffa5fbd4135cc3bcfa38112c5ea5087aefb98cf3ee273a61
|