cds_submit_request
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_submit_request for the schema, then POST the same URL with its arguments for the data.
Submit a data-retrieval job to the Copernicus Climate Data Store and return the job id and status. Requires your own free CDS Personal Access Token, passed as _apiKey. Use cds_collection first to learn the accepted inputs; CDS jobs are asynchronous — this returns immediately with a job id you poll on cds.climate.copernicus.eu.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection_id | string | yes | Collection id to retrieve from, e.g. “reanalysis-era5-single-levels”. |
inputs | object | yes | The request body inputs, exactly as the collection form declares them, e.g. {“variable”:[“2m_temperature”],“year”:[“2024”],“month”:[“01”],“day”:[“01”],“time”:[“12:00”],“data_format”:“netcdf”}. |
_apiKey | string | yes | Your own Copernicus CDS Personal Access Token (BYO). ${KEY_HELP} |
Example call
Arguments
{
"collection_id": "reanalysis-era5-single-levels",
"inputs": {
"variable": [
"2m_temperature"
],
"year": [
"2024"
],
"month": [
"01"
],
"day": [
"01"
],
"time": [
"12:00"
],
"data_format": "netcdf"
},
"_apiKey": "your-copernicus-cds-token"
}
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_submit_request","arguments":{"collection_id":"reanalysis-era5-single-levels","inputs":{"variable":["2m_temperature"],"year":["2024"],"month":["01"],"day":["01"],"time":["12:00"],"data_format":"netcdf"},"_apiKey":"your-copernicus-cds-token"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cds_submit_request', {
"collection_id": "reanalysis-era5-single-levels",
"inputs": {
"variable": [
"2m_temperature"
],
"year": [
"2024"
],
"month": [
"01"
],
"day": [
"01"
],
"time": [
"12:00"
],
"data_format": "netcdf"
},
"_apiKey": "your-copernicus-cds-token"
});
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.