Earthdata MCP Server
Offers containerized deployment of the MCP server through Docker, simplifying setup and ensuring consistent environments for Earth data analysis workflows.
Provides tools to interact with NASA Earth Data for efficient dataset discovery and retrieval for geospatial analysis, including searching for datasets and data granules with filtering by keywords, temporal ranges, and geographical bounding boxes.
Click 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., "@Earthdata MCP Serversearch for sea surface temperature datasets from the last month"
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.
🪐 ✨ Earthdata MCP Server
Earthdata MCP Server is a Model Context Protocol (MCP) server implementation that provides tools to interact with NASA Earth Data.
This server is intentionally Earthdata-only.
If you need notebook/runtime tools, compose this server with jupyter-mcp-server using mcp-compose.
Key Features
Dataset discovery on NASA Earthdata
Granule search with temporal and bounding box filters
Flexible download workflow with explicit execution modes
Related MCP server: Jupyter Earth MCP Server
Getting Started
Local install
pip install earthdata-mcp-serverDocker with Claude Desktop
{
"mcpServers": {
"earthdata": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"datalayer/earthdata-mcp-server:latest"
],
"env": {
"EARTHDATA_USERNAME": "your_username",
"EARTHDATA_PASSWORD": "your_password"
}
}
}
}Linux host networking
{
"mcpServers": {
"earthdata": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--network=host",
"datalayer/earthdata-mcp-server:latest"
],
"env": {
"EARTHDATA_USERNAME": "your_username",
"EARTHDATA_PASSWORD": "your_password"
}
}
}
}Tools
The server offers 3 Earthdata tools.
search_earth_datasets
Search for datasets on NASA Earthdata.
Input:
search_keywords (str): Keywords to search for in the dataset titles.
count (int): Number of datasets to return.
temporal (tuple): (Optional) Temporal range in the format (date_from, date_to).
bounding_box (tuple): (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).
Returns: List of dataset abstracts.
search_earth_datagranules
Search for data granules on NASA Earthdata.
Input:
short_name (str): Short name of the dataset.
count (int): Number of data granules to return.
temporal (tuple): (Optional) Temporal range in the format (date_from, date_to).
bounding_box (tuple): (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).
Returns: List of data granules.
download_earth_data_granules
Search and optionally download granules with explicit modes.
Authentication: Requires NASA Earthdata Login credentials (see authentication guide)
Input:
folder_name (str): Local folder name to save the data.
short_name (str): Short name of the Earth dataset to download.
count (int): Number of data granules to download.
temporal (tuple): (Optional) Temporal range in the format (date_from, date_to).
bounding_box (tuple): (Optional) Bounding box in the format (lower_left_lon, lower_left_lat, upper_right_lon, upper_right_lat).
mode (str): One of:
manifest: Returns granule metadata only.download: Downloads files directly on server side.script: Returns Python code to execute elsewhere.
max_manifest_items (int): Max items returned in
manifestmode.
How download works
download_earth_data_granules always starts by searching for granules with your filters, then behaves based on mode:
manifestReturns a structured preview (
items) with IDs, titles, and links.Does not write files.
Best first step for validating query scope.
downloadAuthenticates with Earthdata using environment credentials.
Downloads matching granules directly to
folder_nameon the server runtime.Returns downloaded file paths.
scriptReturns executable Python code that performs the same search + download.
Best option when execution should happen in a notebook/runtime controlled by another MCP server.
Recommended download strategy
Use
mode="manifest"first to inspect results safely.Use
mode="script"when you want notebook-driven execution viamcp-compose+jupyter-mcp-server.Use
mode="download"only when server-side file writes are intended.
For a full composition example with mcp-compose, see download workflow docs.
Prompts
download_analyze_global_sea_levelGenerates a workflow that starts with
download_earth_data_granulesinscriptmode.Intended to be executed in a composed notebook/runtime stack (via
mcp-compose).
sealevel_rise_datasetSearch for datasets related to sea level rise worldwide.
Input:
start_year(int): Start year to consider.end_year(int): End year to consider.
Returns: Prompt correctly formatted.
ask_datasets_formatTo ask about the format of the datasets.
Returns: Prompt correctly formatted.
Building
# or run `docker build -t datalayer/earthdata-mcp-server .`
make build-dockerIf you prefer, you can pull the prebuilt images.
make pull-dockerThis 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
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides a standardized interface for AI models to interact with NASA's vast array of data sources including APOD, Mars Rover photos, satellite imagery, and space weather data.Last updated2318192ISC
- Alicense-qualityFmaintenanceA Model Context Protocol server implementation that provides geospatial analysis tools in Jupyter notebooks, particularly for downloading NASA Earth data granules.Last updated6BSD 3-Clause
- AlicenseAqualityCmaintenanceA Model Context Protocol server that connects Large Language Models to the GeoServer REST API, enabling AI assistants to query and manipulate geospatial data through natural language.Last updated986MIT
- Alicense-qualityCmaintenanceA Model Context Protocol server for retrieving land cover, soil type, and temporal land use data for any geographical coordinates using the National Land Cover Database and FAO soil classifications.Last updatedMIT
Related MCP Connectors
MCP server for Mireye Earth — federal-source-cited geospatial data for any MCP-aware agent.
Geospatial MCP server for earthquake, tsunami, volcano, disaster, and FX data queries.
Hosted weather data MCP for discovery, validation, and OAuth-protected GribStream queries.
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/datalayer/earthdata-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server