planetary_computer_collection
Pack: planetary-computer · Endpoint: https://gateway.pipeworx.io/planetary-computer/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/planetary_computer_collection for the schema, then POST the same URL with its arguments for the data.
Full detail for one Planetary Computer collection: title, description, licence, providers, spatial and temporal extent, and the asset keys (bands, derived layers) its items carry. AUTHORITATIVE for what a dataset actually contains and how far back it goes, straight from the catalogue. Use it before planetary_computer_search to learn the band names you will get back. Get valid ids from planetary_computer_collections.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection_id | string | yes | Collection id exactly as listed, e.g. “sentinel-2-l2a”, “landsat-c2-l2”, “naip”. |
Example call
Arguments
{
"collection_id": "sentinel-2-l2a"
}
curl
curl -X POST https://gateway.pipeworx.io/planetary-computer/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"planetary_computer_collection","arguments":{"collection_id":"sentinel-2-l2a"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('planetary_computer_collection', {
"collection_id": "sentinel-2-l2a"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"planetary-computer": {
"url": "https://gateway.pipeworx.io/planetary-computer/mcp"
}
}
}
See Getting Started for client-specific install steps.