org.aquaview/aquaview-mcp
Official4 toolsAQUAVIEW MCP Server - Search and access global oceanographic and environmental datasets.
Search and access global oceanographic and environmental datasets.
Captured live from the server via tools/list.
search_datasets
Search the AQUAVIEW catalog — a comprehensive collection of 268K+ global oceanographic, atmospheric, and marine datasets from 15 sources (NOAA, NDBC, IOOS, WOD, CoastWatch, etc.), intended for scientific research, data analysis, and environmental monitoring. You must provide at least one of: q, bbox, datetime, collections, filter, or token. Hint: When the user asks for a region, prefer the 'bbox' parameter over including region name in 'q'. Use the geo_hints resource for common bounding boxes.
Parameters (12)
- qany
Free-text search across title, description, and keywords (e.g., "sea surface temperature"). Case-insensitive, OR logic across terms.
- bboxany
Bounding box as "west,south,east,north" (e.g., "-98,24,-80,31" for Gulf of Mexico).
- datetimeany
Temporal filter. Single datetime, range ("2020-01-01T00:00:00Z/2024-12-31T23:59:59Z"), or open-ended ("../2024-01-01T00:00:00Z" or "2020-01-01T00:00:00Z/..").
- collectionsany
Comma-separated collection IDs to search within (e.g., "NOAA,NDBC,WOD"). Use list_collections to see available IDs.
- exclude_collectionsany
Comma-separated collection IDs to omit from results (e.g., "INCIDENT_NEWS" to drop oil-spill reports from free-text searches). Applied as a CQL2 NOT filter, so it composes with `filter`.
- filterany
CQL2-JSON filter as an object or JSON-encoded string. Supports flat and nested property paths. Flat example: {"op": "=", "args": [{"property": "aquaview:institution"}, "NOAA/NCEI"]}. Nested example (filter by per-variable stats summary): {"op": "<=", "args": [{"property": "aquaview:column_stats_summary.variables.Pressure.min"}, 10]}. Supported operators: =, <>, <, >, <=, >=, like, between, in, and, or, not.
- sortbyany
Sort specification as "+field,-field" (e.g., "+properties.datetime,-id"). + = ascending, - = descending.
- limitinteger
Number of results to return, 1-100. Defaults to 10.
- tokenany
Pagination token from a previous response's 'next_token' field. Pass this to get the next page of results.
- fieldsany
Comma-separated list of fields to include in results (e.g., "id,geometry,properties.title"). Reduces response size. When set in CSV mode, emits projected columns (no canonical columns, no asset_keys, no `## assets` section).
- include_assetsboolean
If False (default), asset download records are omitted to save ~60-70% of response tokens; CSV mode still emits a capped `asset_keys` hint column (e.g. `column_stats;overview;gdac_prof;+[N]`) so an agent can see what kinds of assets exist. To get full URLs, call `get_item(collection, item_id)` for the specific id. If True, assets are included inline (full dict for JSON/TOON; `## assets` section with item_id,key,href,type,title rows for CSV).
- output_formatstring
"csv" (default, sectioned CSV — canonical columns including asset_keys hint), "json", or "toon".
get_item
Fetch a single AQUAVIEW dataset item with full details, properties, and download links (assets). STAC items embed assets inline — each asset includes an href (download URL) and media type, so there is no need for a separate "files" call.
Parameters (3)
- collectionstringrequired
The collection ID the item belongs to (e.g., "NOAA", "NDBC", "WOD"). Available from search results or list_collections.
- item_idstringrequired
The unique item identifier (e.g., "wod_xbt_ZZ144579"). Available from search results.
- output_formatstring
"toon" (default) or "json".
list_collections
List all available AQUAVIEW data collections (sources). Returns a summary of each collection with ID, title, description, spatial/temporal extent, and keywords. Use collection IDs to filter searches.
Parameters (1)
- output_formatstring
"csv" (default, sectioned CSV — ~20% fewer tokens than TOON for this tabular response), "json", or "toon". Use "json" for deterministic/structured consumers.
aggregate
Run aggregation queries on the AQUAVIEW catalog — get counts, spatial distributions, temporal distributions, and per-collection breakdowns without fetching individual items.
Parameters (10)
- aggregationsstringrequired
Comma-separated aggregation types (required). Valid types: total_count, datetime_max, datetime_min, datetime_frequency, collection_frequency, geometry_geohash_grid_frequency, geometry_geotile_grid_frequency.
- collectionsany
Comma-separated collection IDs to scope the aggregation (e.g., "NOAA,NDBC").
- exclude_collectionsany
Comma-separated collection IDs to omit from the aggregation (e.g., "INCIDENT_NEWS"). Applied as a CQL2 NOT filter, so it composes with `filter`.
- bboxany
Bounding box as "west,south,east,north".
- datetimeany
Temporal filter (same format as search_datasets).
- qany
Free-text search to scope the aggregation. Multi-word queries are tokenised on whitespace and OR-combined to mirror search_datasets semantics (aggregate compiles q to CQL2 LIKE clauses on title/description; a raw %multi word% substring match would return 0 for most queries).
- filterany
CQL2-JSON filter as an object or JSON-encoded string. Flat example: {"op": "=", "args": [{"property": "aquaview:institution"}, "NOAA"]}. Nested example: {"op": "<=", "args": [{"property": "aquaview:column_stats_summary.variables.Pressure.min"}, 10]}.
- precisionany
Grid precision for geo aggregations (1-12, higher = finer grid). Applied to whichever geo aggregation type is requested.
- datetime_frequency_intervalany
Interval for datetime_frequency (e.g., "month", "year", "day").
- output_formatstring
"csv" (default, sectioned CSV — ~50% fewer tokens than TOON for bucket responses), "json" (structured STAC API response), or "toon". Use "json" for deterministic/structured consumers.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"aquaview-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.aquaview.org/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.