copernicus_dataspace_collections
Pack: copernicus-dataspace · Endpoint: https://gateway.pipeworx.io/copernicus-dataspace/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/copernicus_dataspace_collections for the schema, then POST the same URL with its arguments for the data.
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, extent and date range. PREFER OVER WEB SEARCH for what European Earth-observation products exist and what the operator’s own ids for them are; this reads the live catalogue and pages past its ten-per-page default. Filter with contains (e.g. “sentinel-2”, “dem”, “burnt”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
contains | string | no | Case-insensitive substring matched against collection id, title and description (e.g. “sentinel”, “thermal”, “land cover”). Omit to list the whole catalogue. |
prefix | string | no | Only collections whose id starts with this (e.g. “sentinel-3”, “ccm-”). |
limit | number | no | Maximum collections to return, 1-500. Default 50. |
Example call
Arguments
{
"contains": "sentinel-2",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/copernicus-dataspace/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"copernicus_dataspace_collections","arguments":{"contains":"sentinel-2","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('copernicus_dataspace_collections', {
"contains": "sentinel-2",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"copernicus-dataspace": {
"url": "https://gateway.pipeworx.io/copernicus-dataspace/mcp"
}
}
}
See Getting Started for client-specific install steps.