Oceanum MCP
OfficialClick 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., "@Oceanum MCPsearch for sea surface temperature datasets in the North Atlantic"
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.
Oceanum MCP
An MCP server package that provides AI assistants with access to the Oceanum platform for ocean/environmental data and cloud storage.
Servers
This package contains multiple MCP servers, selectable at runtime:
Server | Description |
| Search, query, and manage ocean/environmental datasets |
| List, read, write, and delete files in Oceanum cloud storage |
| All tools from both servers under a single endpoint (default) |
Related MCP server: ERDDAP MCP Server
Prerequisites
Get an API token from oceanum.io. Set it as the DATAMESH_TOKEN environment variable.
Installation
pip install oceanum-mcpOr run directly with uvx:
uvx oceanum-mcp # combined server (default)
uvx oceanum-mcp datamesh # datamesh only
uvx oceanum-mcp storage # storage only
uvx oceanum-mcp --list # show available serversConfiguration
Claude Desktop
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Combined server (all tools):
{
"mcpServers": {
"oceanum": {
"command": "uvx",
"args": ["oceanum-mcp"],
"env": {
"DATAMESH_TOKEN": "your-token-here"
}
}
}
}Individual server (datamesh only):
{
"mcpServers": {
"oceanum-datamesh": {
"command": "uvx",
"args": ["oceanum-mcp", "datamesh"],
"env": {
"DATAMESH_TOKEN": "your-token-here"
}
}
}
}Claude Code
# Combined server
claude mcp add --transport stdio oceanum -- uvx oceanum-mcp
# Individual server
claude mcp add --transport stdio oceanum-datamesh -- uvx oceanum-mcp datameshSet the token in your environment:
export DATAMESH_TOKEN=your-token-hereVS Code / Cline / Continue
Use stdio transport with the same command:
{
"command": "uvx",
"args": ["oceanum-mcp"],
"env": {
"DATAMESH_TOKEN": "your-token-here"
}
}Environment Variables
Variable | Required | Description |
| Yes | Oceanum API token (shared by all servers) |
| No | Custom datamesh service URL (default: |
| No | Custom storage service URL (default: |
| No | Override the base domain for all services (default: |
| No | Set to |
| No | Max staged result size returned inline by |
| No | Max rows/records previewed inline before truncation (default 100) |
| No | If set, |
| No | Auth scheme for |
| No | Auth0 tenant domain for |
| No | Auth0 API audience for |
| No | Externally visible base URL (e.g. |
DATAMESH_TOKEN is required for the stdio transport (and for --transport http
with OCEANUM_MCP_AUTH=none); in authenticated http mode each request carries
its own credential and no server-side token is needed.
Hosted mode (HTTP transport)
Run any server as a shared, multi-tenant HTTP service:
oceanum-mcp datamesh --transport http --host 0.0.0.0 --port 8000This serves the MCP streamable-HTTP endpoint at http://<host>:<port>/<server>
(/datamesh here; override with --path). Each server owning its own path
lets several MCP servers share one domain behind an ingress — e.g.
https://mcp.oceanum.io/datamesh and https://mcp.oceanum.io/storage.
Every request must present a bearer credential, and all Datamesh/Storage calls
are made as that request's user — connections are cached per credential and
never shared between tokens.
Auth schemes (OCEANUM_MCP_AUTH):
auto(default) — accepts either credential, detected per request: Datamesh tokens arrive in theX-DATAMESH-TOKENheader (the same header the gateway itself uses), Auth0 JWTs inAuthorization: Bearer. A Datamesh token sent as the bearer also works (JWT-shape detection routes it), but the dedicated header is the canonical form. Each request runs as the identity its own credential resolves to.datamesh— only Datamesh tokens are accepted. The server validates them against the gateway. Add to Claude Code with:claude mcp add --transport http oceanum-datamesh https://mcp.oceanum.io/datamesh \ --header "X-DATAMESH-TOKEN: <datamesh-token>"auth0— clients send an Auth0-issued JWT, validated against the tenant JWKS and forwarded to the Datamesh gateway as-is.none— no authentication; every request uses the server's ownDATAMESH_TOKEN. Only for trusted-network deployments.
Notes:
export_queryworks over HTTP but changes shape: instead of writing to the server's local filesystem (meaningless for remote clients), it returns a time-limited, self-authenticating gatewaydownload_urlthat the caller fetches out-of-band. Thepathargument is ignored on hosted servers. The URL needs no credential, so it is a capability — treat it as a secret.Combine with
OCEANUM_MCP_READ_ONLY=1to run a read-only public service.Pass
--statelesswhen running behind a load balancer or on autoscaled platforms (Cloud Run, etc.): sessions are otherwise held in instance memory, and consecutive requests routed to different instances would fail.Breaking change for
--transport sse(deprecated): sse is a network transport and now behaves like http — authenticated by default and noexport_query. SetOCEANUM_MCP_AUTH=noneto restore the old unauthenticated behavior.
Serving under an external ASGI server
To run under uvicorn/gunicorn (multiple workers, serverless platforms), use
the packaged app factory — it applies the same auth and tool policy as the
CLI; serving mcp.http_app() directly would bypass both:
uvicorn --factory oceanum_mcp.app:create_http_app --host 0.0.0.0 --port 8000Requests on a network transport never fall back to the server's
DATAMESH_TOKEN: an unauthenticated request fails unless
OCEANUM_MCP_AUTH=none was set explicitly.
claude.ai custom connectors
Set OCEANUM_MCP_PUBLIC_URL to the server's public base URL and the auto
and auth0 modes additionally serve OAuth 2.0 Protected Resource Metadata
(RFC 9728) naming the Auth0 tenant, plus a WWW-Authenticate challenge on
401s — which is how claude.ai discovers where to send users to authorize.
The Auth0 tenant must allow client registration for Claude (Dynamic Client
Registration, or a pre-registered application) and issue JWT access tokens
for the configured audience. Header/bearer clients are unaffected either way.
Datamesh Tools
The intended workflow is: search_catalog → get_datasource_info → stage_query
(dry run: learn the result size without downloading) → query_data for small
results inline, or export_query to write large results to a file that analysis
code reads directly.
search_catalog
Search the Datamesh catalog with optional text search, time range, and bounding box filters.
Returns a JSON object with count and results; if count equals limit, more matches may exist.
Parameter | Type | Description |
| string | Text search for name, description, or tags |
| string | ISO 8601 start time |
| string | ISO 8601 end time |
| list[float] | Bounding box |
| int | Max results to return (default 20) |
get_datasource_info
Get full metadata for a datasource including schema, variables, coordinates, and attributes.
Parameter | Type | Description |
| string | Datasource ID |
stage_query
Dry-run a query on the Datamesh gateway: reports the result size, container
type, and domain length without downloading any data, echoes the canonical
query, and recommends the next step (inline query vs export vs narrowing).
Accepts the same query parameters as query_data.
query_data
Query a datasource with filters and return small results inline as
coordinate-attributed JSON records with explicit truncated/lazy flags.
The query is staged first: gridded results above the inline limit are
summarized lazily (structure only); tabular results above the limit are
refused with the staged size and alternatives. Library warnings (e.g. the
2,000,000-row cap on tabular queries) are included in the response.
Parameter | Type | Description |
| string | Datasource to query |
| list[string] | Variables to select |
| string | ISO 8601 start of a time range (open-ended if omitted) |
| string | ISO 8601 end of a time range (open-ended if omitted) |
| list[string] | Discrete times (series selection); excludes |
| string | Server-side temporal downsampling (pandas frequency, e.g. |
| string | Resampling method for |
| list[float] | Bounding box |
| object | GeoJSON Feature (Point, MultiPoint, or Polygon) for selection |
| string | Interpolation for feature selection: nearest or linear |
| float | Max spatial resolution for downsampling, in CRS units |
| float | Minimum vertical level |
| float | Maximum vertical level |
| list[float] | Discrete vertical levels (series selection) |
| string | Interpolation for level series: nearest or linear |
| list[object] | Coordinate selections: |
| string/int | CRS for filter coordinates and returned data |
| list[string] | Aggregation ops: mean, min, max, std, sum |
| bool | Aggregate over spatial dims (default true) |
| bool | Aggregate over temporal dims (default true) |
| int | Max rows to return |
export_query
Export the full result of a query — the data-handle path for results too large to return inline. Behaviour depends on transport:
Local (stdio): writes the result to the local file
path(required) and returns that path. Gridded datasets stream lazily to NetCDF; tabular results write Parquet or CSV.Hosted (http/sse): returns a time-limited, self-authenticating gateway
download_url(chooseformat;pathis ignored). Fetch it out-of-band.
Accepts the same query parameters as query_data plus:
Parameter | Type | Description |
| string | Destination file path (parent directories are created) |
| string |
|
| bool | Overwrite an existing file (default false) |
load_datasource
Summarize an entire datasource. Gridded datasources are opened lazily (no data download); tabular datasources are downloaded only if under the inline size limit.
Parameter | Type | Description |
| string | Datasource to load |
update_metadata
Update metadata on an existing datasource. Only provided fields are changed.
Disabled when the server runs with OCEANUM_MCP_READ_ONLY set.
Parameter | Type | Description |
| string | Datasource to update |
| string | New name |
| string | New description |
| list[string] | New tags |
| list[string] | New labels |
| object | Additional metadata object |
| string | URL for datasource details |
Storage Tools
list_files
List files and directories in Oceanum cloud storage.
Parameter | Type | Description |
| string | Directory path to list (default: "/") |
| bool | List subdirectories recursively |
file_exists
Check if a file or directory exists in storage.
Parameter | Type | Description |
| string | Path to check |
read_file
Read the contents of a text file from storage.
Parameter | Type | Description |
| string | Path to the file |
write_file
Write text content to a file in storage.
Parameter | Type | Description |
| string | Destination path |
| string | Text content to write |
delete_file
Delete a file or directory from storage.
Parameter | Type | Description |
| string | Path to delete |
| bool | Delete directory contents recursively |
file_info
Get metadata about a file or directory.
Parameter | Type | Description |
| string | Path to inspect |
Example Workflows
Discover wave data in the Pacific:
search_catalog(search="wave", bbox=[120, -50, 180, 10])get_datasource_info(datasource_id="some-wave-dataset")stage_query(datasource_id="some-wave-dataset", variables=["Hs", "Tp"], time_start="2024-01-01", time_end="2024-01-31")to check the result sizequery_data(...)with the same parameters if small, orexport_query(..., path="waves.nc")if large
Shrink a 40-year hourly time series to something inline-sized:
stage_query(datasource_id="hindcast", variables=["Hs"], time_start="1984-01-01", time_end="2024-01-01")— too largequery_data(..., time_resolution="1MS", time_resample="mean")— monthly means, small enough to return inline
Browse and read files in cloud storage:
list_files(path="/")to see top-level contentslist_files(path="/my-project", recursive=True)to drill downread_file(path="/my-project/config.json")to read a file
Get a quick summary of a dataset:
get_datasource_info(datasource_id="my-dataset")to see variables and time rangequery_data(datasource_id="my-dataset", limit=10)to preview the data
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.
Related MCP Servers
- Alicense-qualityAmaintenanceEnables natural language search and discovery of open-access scientific datasets through the EOSC Data Commons OpenSearch service. Provides tools to search datasets and retrieve file metadata using LLM-assisted queries.Last updated14MIT
- Flicense-qualityDmaintenanceAccess oceanographic and environmental data from 63+ ERDDAP servers worldwide through natural language queries. Search datasets, retrieve metadata, and download scientific data for climate research, marine biology, and coastal management.Last updated17

Code Ocean MCP Serverofficial
AlicenseBqualityDmaintenanceProvides tools to search and execute Code Ocean capsules and pipelines while managing platform data assets. It enables users to interact with Code Ocean's computational resources and scientific workflows directly through natural language interfaces.Last updated265MIT- FlicenseCqualityDmaintenanceEnables LLMs to interact with ERDDAP search, metadata, and tabledap services for oceanographic data.Last updated51
Related MCP Connectors
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Securely search and manage workspace context files for AI agents and teams.
Real-world data for agents: air quality, geocoding, quakes, holidays, web search
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/oceanum-io/oceanum-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server