We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wayfinder-Foundry/gdal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
0013-configuration-isolation.md•523 B
# ADR-0013-configuration-isolation.md
## Title
Per-request GDAL configuration isolation
## Status
Proposed
## Context
GDAL has global config/state that can bleed across operations.
## Decision
* Wrap each tool in `rasterio.Env(...)` (and/or GDAL config contexts) to set per-request options (`GDAL_CACHEMAX`, VSI auth, threads).
* Avoid global mutation; never rely on ambient environment.
## Consequences
* Pro: Deterministic behavior, safer multi-tenant ops.
* Con: Must plumb config options through tool params.