sentinelhub_catalog_search
Pack: sentinel-hub · Endpoint: https://gateway.pipeworx.io/sentinel-hub/mcp
Which satellite scenes are available for an area + time — searches the Sentinel-2 catalog (STAC) and returns matching scenes with acquisition datetime and cloud cover. Example: sentinelhub_catalog_search({ bbox: [12.44, 41.87, 12.53, 41.93], date_from: “2023-06-01”, date_to: “2023-06-30”, limit: 10, _apiKey: “client_id:client_secret” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
bbox | array | yes | Bounding box [minLon, minLat, maxLon, maxLat] in EPSG:4326. |
items | number | no | |
date_from | string | yes | Start date, YYYY-MM-DD. |
date_to | string | yes | End date, YYYY-MM-DD. |
limit | integer | no | Max scenes to return (default 10, max 50). |
_apiKey | string | yes | Sentinel Hub OAuth credentials as “client_id:client_secret” (from sentinel-hub.com or free at dataspace.copernicus.eu). |
Example call
curl -X POST https://gateway.pipeworx.io/sentinel-hub/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sentinelhub_catalog_search","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sentinel-hub": {
"url": "https://gateway.pipeworx.io/sentinel-hub/mcp"
}
}
}
See Getting Started for client-specific install steps.