cds_collection

Pack: copernicus-cds · Endpoint: https://gateway.pipeworx.io/copernicus-cds/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/cds_collection for the schema, then POST the same URL with its arguments for the data.

Full detail for ONE Copernicus Climate Data Store collection by id (e.g. “reanalysis-era5-single-levels”). Returns the STAC record — title, abstract, keywords, licence, temporal and bounding-box extent, documentation links — AND the request form: the variables, years, months, pressure levels, area and output formats the retrieval job will accept. Keyless. Call this before cds_submit_request to learn what the dataset actually accepts.

Parameters

NameTypeRequiredDescription
collection_idstringyesCollection id from cds_collections, e.g. “reanalysis-era5-single-levels”.
include_formbooleannoInclude the retrieval request form (the accepted inputs). Default true.

Example call

Arguments

{
  "collection_id": "reanalysis-era5-single-levels"
}

curl

curl -X POST https://gateway.pipeworx.io/copernicus-cds/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cds_collection","arguments":{"collection_id":"reanalysis-era5-single-levels"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('cds_collection', {
  "collection_id": "reanalysis-era5-single-levels"
});

More examples

{
  "collection_id": "satellite-sea-ice-concentration",
  "include_form": true
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "copernicus-cds": {
      "url": "https://gateway.pipeworx.io/copernicus-cds/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026