Copernicus Dataspace

liveSpace

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.

3tools
0msauth
free tier50 calls/day

Tools

copernicus_dataspace_collections

List 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_collection

Full 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

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/copernicus-dataspace/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("copernicus_dataspace_collections", {});
ask_pipeworx
// 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");