# Hydrata - ANUGA Flood Simulation MCP server

Run ANUGA flood simulations, track progress, and retrieve results on Hydrata Cloud.

## Links
- Registry page: https://www.getdrio.com/mcp/com-hydrata-hydrata-mcp-server
- Repository: https://github.com/Hydrata/hydrata-mcp-server

## Install
- Endpoint: https://hydrata.com/mcp/
- Auth: Not captured

## Setup notes
- Remote endpoint: https://hydrata.com/mcp/

## Tools
- list_projects - List ANUGA simulation projects accessible to the authenticated user.

Returns a paginated list of projects with their names, projections,
and base map references. Endpoint: https://hydrata.com/mcp/
- get_project - Get details of a specific ANUGA project including its scenarios.

Returns the project name, projection (EPSG code), base map ID,
and configuration. Endpoint: https://hydrata.com/mcp/
- get_scenario - Get scenario details including its current status and latest run.

The status field is computed from the latest run and will be one of:
created, building, built, queued, computing, processing, complete,
error, or cancelled. A scenario must be in 'built' status before
it can be run. Endpoint: https://hydrata.com/mcp/
- start_simulation - Start a flood simulation run for a built scenario.

The scenario must be in 'built' status. Returns 202 with the new run.
The run transitions through: built → queued → computing → processing → complete.

After starting, poll get_run_status to track progress. Returns 409
if the scenario is not in the correct state. Endpoint: https://hydrata.com/mcp/
- get_run_status - Lightweight status check for a simulation run (fast, <50ms).

Use this for polling instead of get_run. Returns only: id, status,
progress_pct (0-100), eta_seconds, error_message, and compute_backend.

Poll every 5-10 seconds. Terminal states: complete, error, cancelled. Endpoint: https://hydrata.com/mcp/
- get_run - Get full details of a simulation run including timing and results.

Returns the complete run record: status, progress, timing (start/end
timestamps, duration), compute details (backend, instance type, cost),
mesh info, error messages, and result log. Use get_run_status for
lightweight polling; use this for final results. Endpoint: https://hydrata.com/mcp/
- cancel_run - Cancel an in-flight simulation run.

Works on runs in built, queued, or computing status. Cleans up
compute resources (terminates EC2 instance, Celery task, or Batch job).

Returns 409 if the run is already in a terminal state
(complete, cancelled, or error). Endpoint: https://hydrata.com/mcp/
- retry_run - Retry a failed simulation run.

Resets an errored run back to 'created' status and triggers a new
package build. The same run ID is reused. Only valid when
status is 'error'. Returns 409 for any other state. Endpoint: https://hydrata.com/mcp/
- list_runs - List all simulation runs across all scenarios in a project.

Returns a paginated list of runs. Optionally filter by status
to find active, completed, or failed runs. Endpoint: https://hydrata.com/mcp/

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: com.hydrata
- Version: 0.1.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Mar 1, 2026
- Source: https://registry.modelcontextprotocol.io
