A Python-first toolkit to make Umbra SAR open data easy to discover, load, process, and analyze.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add umbra-py -- uvx --from{
"mcpServers": {
"umbra-py": {
"command": "uvx",
"args": ["--from"]
}
}
}Resumen de MCP Servers
# umbra-py
[](https://opensource.org/licenses/Apache-2.0)
[](https://www.python.org/)
[](https://github.com/reesehammer/umbra-py/actions/workflows/ci.yml)
[](https://codecov.io/gh/reesehammer/umbra-py)
[](https://umbra-py.space/)
**A Python toolkit to discover, preview, load, and analyze [Umbra](https://umbra.space/open-data/) open SAR data.**
Umbra publishes 16–25 cm synthetic aperture radar as CC BY 4.0 open data, but
there is no search API — only a 17+ TB S3 bucket and a static STAC tree.
`umbra-py` is the missing layer: search, preview, download, and analysis-ready
arrays without writing the same 500 lines of glue first.
📖 **Docs:** [umbra-py.space](https://umbra-py.space/)
· **Showcase:** [browse the archive in the browser](https://umbra-py.space/showcase/)
(no install)
> **Status:** v0.1.1. Discovery, download, xarray loading,
> SICD → geocoded COG, change/timescan composites, chips, a local STAC API, and
> an MCP server all ship. This is **not** an InSAR toolbox (phase is not
> preserved through convert). Not affiliated with Umbra Lab, Inc.
## Install
```bash
pip install umbra-py # core: search + download + metadata
pip install "umbra-py[load]" # + xarray / rasterio
pip install "umbra-py[viz]" # + quicklooks, maps, galleries
pip install "umbra-py[convert]" # + SICD → geocoded COG
pip install "umbra-py[all]" # convert + load + viz + export
```
Python 3.10+. Other extras (`dask`, `serve`, `mcp`, `ai`, `langchain`,
`llamaindex`) are listed in the [install guide](https://umbra-py.space/install/).
## Five minutes to a scene
Fetch the weekly catalog snapshot, then search and preview offline. A live
walk of the bucket (`umbra search` without `--local`) works but is slow.
```bash
pip install "umbra-py[viz,load]"
umbra index fetch
umbra search --local --area Centerfield --product GEC --limit 3
umbra gallery --local --area Centerfield --limit 6 --out gallery.html --db
```
```python
from umbra_py import CatalogIndex, to_xarray
with CatalogIndex.from_release() as index:
item = next(iter(index.search(area="Centerfield", product_types=["GEC"], limit=1)))
# Stream a downsampled window over HTTP — no multi-GB download. Needs [load].
da = to_xarray(item, max_size=1024, db=True)
print(item.summary())
```
If the snapshot is missing, the same search against the live bucket is
`UmbraCatalog().search(...)` / `umbra search --area Centerfield`.
## What you can do
More detail, options, and caveats live in the
[docs](https://umbra-py.space/).
**Search** by bbox, place name, polygon, or Umbra task (`area=`).
`--local` reads the snapshot; omit it to walk S3.
```python
from umbra_py import UmbraCatalog
for item in UmbraCatalog().search(area="Centerfield", product_types=["GEC"], limit=5):
print(item.summary())
```
**Preview** without downloading the scene: `umbra gallery`, `umbra quicklook
<stac-url> --out scene.png --db`, `umbra view <stac-url>` (full-res tiles),
or `umbra change --area Centerfield --out change.png`.
**Load** a geocoded GEC into xarray or a GeoTIFF (`to_xarray`, `to_geotiff`,
`to_stack`). Needs `[load]`.
**Convert** a SICD to a north-up COG (`sicd_to_geocoded_cog`, `umbra convert`).
Needs `[convert]`. Open products generally have no radiometric metadata, so
`--calibrate` / `--noise-model measured` refuse rather than invent numbers.
See [limitations](https://umbra-py.space/guides/limitations/).
**Chip** scenes into georeferenced ML tiles: `umbra chips --area Centerfield
--out chips/`.
**Drive it from an agent.** Zero-install MCP server:
```bash
uvx --from 'umbra-py[mcp]' umbra-mcp
```
```json
{
"mcpServers": {
"umbra": {
"command": "uvx",
"args": ["--from", "umbra-py[mcp]", "umbra-mcp"]
}
}
}
```
That command is published to the [MCP registry](https://registry.modelcontextprotocol.io/)
as `io.github.reesehammer/umbra-mcp`. A local STAC API is `umbra serve` (needs
`[serve]`); `docker compose up` is the one-command form. There is no public
hosted instance yet.
<!-- mcp-name: io.github.reesehammer/umbra-mcp -->
## What the data looks like
| Asset | What it is | Use it for |
|-------|------------|------------|
| `GEC` | Geocoded cloud-optimized GeoTIFF | Map-ready imagery. **Start here.** |
| `CSI` | Color sub-aperture GeoTIFF | Quick-look RGB, not a measurement |
| `SIDD` | Geocoded detected image (NITF) | Detected imagery in a standard format |
| `SICD` | Complex data in the radar slant plane (NITF) | Phase-preserving work, InSAR *inputs* |
| `CPHD` | Compensated phase history | Custom image formation |
`umbra-py` downloads SICD/CPHD and can geocode a SICD to amplitude. It does
not form interferograms or compute coherence.
## Data license & attribution
Umbra's imagery is **CC BY 4.0**. If you use or redistribute the data or
derived products you must attribute Umbra, e.g.:
> Contains Umbra open data, licensed under CC BY 4.0.
`umbra-py` itself is **Apache 2.0** ([LICENSE](LICENSE)). The two licenses
are independent and compatible.
## Citing umbra-py
Machine-readable metadata lives in [CITATION.cff](CITATION.cff). GitHub
renders it as a **"Cite this repository"** button. Please also honor the
CC BY 4.0 line above for any Umbra data you use.
## Community
- [Contributing](CONTRIBUTING.md) · [Code of Conduct](CODE_OF_CONDUCT.md) · [Security](SECURITY.md)
- [Example notebooks](examples/) · [Limitations](https://umbra-py.space/guides/limitations/)
## Acknowledgements
Built on the SAR open-source community, including
[`sarpy`](https://github.com/ngageoint/sarpy) and Umbra's open data program.
**Not affiliated with or endorsed by Umbra Lab, Inc.**
Lo que la gente pregunta sobre umbra-py
¿Qué es reesehammer/umbra-py?
+
reesehammer/umbra-py es mcp servers para el ecosistema de Claude AI. A Python-first toolkit to make Umbra SAR open data easy to discover, load, process, and analyze. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-21.
¿Cómo se instala umbra-py?
+
Puedes instalar umbra-py clonando el repositorio (https://github.com/reesehammer/umbra-py) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar reesehammer/umbra-py?
+
Nuestro agente de seguridad ha analizado reesehammer/umbra-py y le ha asignado un Trust Score de 90/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene reesehammer/umbra-py?
+
reesehammer/umbra-py es mantenido por reesehammer. La última actividad registrada en GitHub es del 2026-08-21, con 1 issues abiertos.
¿Hay alternativas a umbra-py?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega umbra-py en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/reesehammer-umbra-py)<a href="https://claudewave.com/repo/reesehammer-umbra-py"><img src="https://claudewave.com/api/badge/reesehammer-umbra-py" alt="Featured on ClaudeWave: reesehammer/umbra-py" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!