stac_get_conformance
Check a STAC catalog's conformance to determine supported API features. Useful for debugging when a catalog lacks expected capabilities.
Instructions
Check which STAC API features a catalog supports.
Reads the catalog's conformance URIs and matches them against known STAC API conformance classes to determine feature support (core, item_search, filter, sort, fields, query, collections).
Args: catalog: Catalog name (default: earth_search). Options: earth_search, planetary_computer, usgs output_mode: Response format - "json" (default) or "text"
Returns: JSON with feature support flags and raw conformance URIs
Tips for LLMs: - Rarely needed — most workflows don't require conformance checking - Useful for debugging when a catalog doesn't support expected features - Check for "query" support if advanced filtering is needed
Example: conformance = await stac_get_conformance(catalog="earth_search")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| catalog | No | ||
| output_mode | No | json |