@pipeworx/mcp-nasa-gibs
Provides access to NASA's Global Imagery Browse Services (GIBS) catalogue, enabling search for satellite imagery layers, retrieval of layer metadata, and generation of image tile URLs for use in mapping applications.
Click on "Deploy 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., "@@pipeworx/mcp-nasa-gibsGet a true-color tile for Los Angeles from yesterday."
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.
@pipeworx/nasa-gibs
NASA GIBS — the ~1,300-layer global satellite imagery catalogue behind NASA Worldview, with daily true-colour mosaics, thermal anomalies, sea-surface temperature, aerosols, snow and ice cover and night lights, most of them with a multi-decade daily time series.
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
gibs_list_layers(query?, projection?, limit?)— search the catalogue by subject or identifier; returns each layer's id, title, grid and available date range.gibs_layer_info(layer, projection?)— one layer's full time coverage, native resolution, format, extent, colour map and legend URLs, and tile template.gibs_tile_url(layer, date?, latitude?, longitude?, zoom?, tile_row?, tile_col?, projection?)— a ready-to-fetch image tile URL, with the tile's own geographic bounds.
Related MCP server: groundstation
Auth
Keyless. No registration, no rate-limit headers.
Data sources
https://gibs.earthdata.nasa.gov/wmts/{projection}/best/1.0.0/WMTSCapabilities.xml — the layer catalogue, one document per projection (
epsg4326,epsg3857,epsg3413,epsg3031).
Things the next person would otherwise rediscover
There is no JSON layer index. The WMTS capabilities XML is the only machine-readable catalogue and it is ~5 MB per projection. It is parsed once per isolate and the (much smaller) result cached in module scope for 6 hours; a per-call re-parse would spend seconds of CPU on a document that changes about once a day. The cache is populated only inside a request — never at module load, where the Workers runtime reports
Date.now()as 1970 and every entry would read as infinitely stale.Each layer has several
<ResourceURL resourceType="tile">templates. Only one carries{Time}; that is the one worth handing a caller. The others drop the date silently and serve whatever GIBS considers current.MatrixWidthis not a power of two (levels go 2, 3, 5, …), so tile row/column cannot be derived from the zoom level alone. They are computed fromScaleDenominatorthe way WMTS specifies:tileSpan = ScaleDenominator × 0.00028 m × TileWidth ÷ metresPerUnit, withmetresPerUnit= 111319.49 forepsg4326(degrees) and 1 for the metre-based projections.TopLeftCorneris written x-then-y (-180 90), not the lat-then-lon axis order EPSG:4326 formally prescribes.Lat/lon → tile conversion is offered for
epsg4326andepsg3857only. The two polar stereographic grids needtile_row/tile_coldirectly, and the tool says so rather than returning a wrong tile.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nasa-gibs": {
"url": "https://gateway.pipeworx.io/nasa-gibs/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/nasa-gibs/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1679+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/gibs_list_layers \
-H 'Content-Type: application/json' \
-d '{"query":"fires","limit":5}'No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/gibs_list_layers. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"nasa-gibs": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-nasa-gibs"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-nasa-gibsIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Nasa Gibs data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Find recent or archived satellite imagery for any place on Earth by location and date.
Discover, verify, and access NASA Earth science datasets via the Common Metadata Repository (CMR)
Sentinel and Landsat imagery catalogue from Element 84's Earth Search over the AWS Open Data…
Search dynamical.org's open STAC catalog of weather & climate datasets (GFS, ECMWF, HRRR).
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables AI assistants to search and access geospatial datasets through STAC (SpatioTemporal Asset Catalog) APIs. Supports querying satellite imagery, weather data, and other geospatial assets with spatial, temporal, and attribute filters.1118MIT
- FlicenseAqualityBmaintenanceEnables AI agents to query Earth observation data, satellite imagery, active fires, and weather via natural language, returning interactive maps and briefs.12-
- AlicenseNot gradedqualityBmaintenanceEnables discovery, analysis, and explanation of open satellite data through MCP, with support for STAC catalogs and NASA GIBS.1MIT
- AlicenseAqualityAmaintenanceEnables AI agents to autonomously discover, stream, and compute satellite analytics from free government Earth-observation catalogs such as Sentinel-2, Landsat, and Copernicus DEM, with zero API keys or configuration. It supports place-name geocoding, STAC scene search, cloud-native COG streaming for spectral indices, elevation profiles, SAR flood detection, and sandboxed custom geospatial scripts.2912Apache 2.0