Copernicus Dataspace
liveSpaceEuropean Sentinel and Copernicus Contributing Mission archive from the EU's Copernicus Data Space Ecosystem — search Sentinel-1/2/3/5P, Copernicus DEM, land-cover and burnt-area products by area and date and get item ids, footprints, dates and product asset paths.
Tools
copernicus_dataspace_collectionsList the product collections in the EU's Copernicus Data Space Ecosystem — Sentinel-1/2/3/5P, Copernicus DEM, Contributing Mission optical/SAR/thermal, CLMS burnt-area — with each one's licence, exten
No parameters required.
Try it
copernicus_dataspace_collectionFull detail for one Copernicus Data Space collection: title, description, licence, providers, spatial and temporal extent, and the asset keys its products carry. AUTHORITATIVE for what a Sentinel prod
No parameters required.
Try it
copernicus_dataspace_searchSearch the EU Copernicus archive for Sentinel and Contributing Mission products over an area and date range, returning product ids, sensing datetimes, footprints and the asset inventory. AUTHORITATIVE
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/copernicus-dataspace/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/copernicus-dataspace/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"copernicus_dataspace_collections","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("copernicus_dataspace_collections", {});// Or ask in plain English:
const answer = await px.ask("european sentinel and copernicus contributing mission archive from the eu's copernicus data space ecosystem — search sentinel-1/2/3/5p, copernicus dem, land-cover and burnt-area products by area and date and get item ids, footprints, dates and product asset paths");