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

NameTypeRequiredDescription
bboxarrayyesBounding box [minLon, minLat, maxLon, maxLat] in EPSG:4326.
itemsnumberno
date_fromstringyesStart date, YYYY-MM-DD.
date_tostringyesEnd date, YYYY-MM-DD.
limitintegernoMax scenes to return (default 10, max 50).
_apiKeystringyesSentinel Hub OAuth credentials as “client_id:client_secret” (from sentinel-hub.com or free at dataspace.copernicus.eu).

Example call

Arguments

{
  "bbox": [
    12.44,
    41.87,
    12.53,
    41.93
  ],
  "date_from": "2023-06-01",
  "date_to": "2023-06-30",
  "limit": 10,
  "_apiKey": "your-sentinel-hub-api-key"
}

curl

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":{"bbox":[12.44,41.87,12.53,41.93],"date_from":"2023-06-01","date_to":"2023-06-30","limit":10,"_apiKey":"your-sentinel-hub-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('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": "your-sentinel-hub-api-key"
});

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.

Regenerated from source · build August 22, 2026