GeoCroissant MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GeoCroissant MCP Serversearch for Sentinel-2 flood scenes near Houston and generate GeoCroissant metadata"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GeoCroissant MCP Server
Model Context Protocol (MCP) server for GeoCroissant and its geospatial extension.
Features
EO dataset discovery - keyword/topic search over STAC collections and spatial scene search (bbox + datetime + cloud cover) against the live Element84 Earth Search API (
https://earth-search.aws.element84.com/v1, AWS Open Data), with sensor-modality classification (optical / radar / elevation) and theme shortcuts (flood,wildfire,ndvi,dem, ...).STAC -> GeoCroissant generation - turns live search results into a validated GeoCroissant document: schema.org coverage, CRS, band configuration & spectral metadata derived from
eo:bands(converted from micrometers to nanometers), distribution FileObjects for direct asset URLs, and a RecordSet embedding one row per scene.Official validator as a tool - structured pass/fail reports with errors and warnings from
mlcroissant(the same engine asmlcroissant validate).Deep inspection - core metadata plus every GeoCroissant property: CRS, spatial/temporal resolution, band configuration, spectral band metadata, record endpoint, spatial index/bias/sampling strategy.
Structure graph extraction - exposes the directed multigraph the library builds internally (Metadata / FileObject / FileSet / RecordSet / Field nodes; source, join and containment edges).
Record materialization - executes the real operation graph (downloads, extracts, transforms) to preview actual records, exactly like
Dataset.records(...)in Python.Validated scaffolding - generates standards-conformant GeoCroissant JSON-LD from structured parameters and checks it through the real validator.
Built-in spec reference - namespaces, all
geocr:properties with domains/cardinality, canonical@context, sample document and Python API.
Related MCP server: Copernicus Earth Observation MCP Server
Tools
Tool | Description |
| Registered EO STAC catalogs (Earth Search) with modalities, curated collections and topic keywords. |
| Topic/keyword search over Earth Search collections - |
| Spatial/temporal/cloud-cover scene search in a bbox; returns per-scene ids, dates, cloud cover, native EPSG and asset keys. |
| End-to-end pipeline: live STAC search -> validated GeoCroissant JSON-LD (coverage, CRS, bands & spectral metadata, distribution URLs, inline scene records). Optionally writes to disk. |
| Validate a Croissant/GeoCroissant document (file path, URL or inline JSON). Returns |
| Structured summary of a document: metadata, |
| Nodes and directed edges of the library's internal structure graph - lineage and dependency analysis. |
| RecordSets with @ids, keys, inline record/example counts and nested field summaries. |
| Materialize the first N records of a RecordSet, optionally filtered. Executes downloads/transforms like the Python API. |
| Downloadable URLs from the distribution: |
| Generate a validated GeoCroissant document from parameters (no network needed). Optionally writes to disk. |
| Specification reference: |
Adding a catalog
The registry is data-driven (src/geocr_mcp_server/config/catalogs.yaml):
each catalog is an entry with its STAC URL, curated collections per modality,
plus shared topics and modality keyword hints. To register another catalog
without touching code:
Copy the YAML somewhere and append your catalog under
catalogs(and any theme mappings undertopics).Point the environment variable at it:
"env": { "GEOCR_CATALOGS_CONFIG": "/path/to/catalogs.yaml" }The loader validates that topic references exist in some catalog's collection lists, so typos fail fast at startup.
Recommended agent workflow
discovery: list_eo_catalogs -> search_eo_datasets("burn scar", modality=optical)
-> search_eo_scenes(bbox=[...], datetime_range=...)
metadata: create_geocroissant_from_stac(...) # validated output + optional file
consuming: inspect_geocroissant -> get_records_preview -> extract_distribution_urls
authoring: create_geocroissant_scaffold -> edit -> validate_croissantInstallation
No clone needed - pip/uvx fetch both geocr-mcp and its mlcroissant dependency straight from GitHub. Cloning is only required for development.
pip
pip install git+https://github.com/HarshShinde0/geocr_mcp.git@mainThe single dependency mlcroissant is pulled automatically from the GeoCroissant fork:
pip install git+https://github.com/HarshShinde0/croissant.git@main#subdirectory=python/mlcroissantuv / uvx (recommended for clients)
uvx --from "geocr-mcp @ git+https://github.com/HarshShinde0/geocr_mcp.git@main" geocr-mcp-serverDocker
docker build -t geocr-mcp-server .
# stdio (local clients):
docker run -i --rm geocr-mcp-server
# hosted (HTTP transports):
docker run -p 8000:8000 geocr-mcp-server --transport streamable-http --host 0.0.0.0 --port 8000Client configuration
No clone needed - clients install (and cache) both packages directly from GitHub via uvx.
{
"mcpServers": {
"geocr": {
"command": "uvx",
"args": [
"--from", "geocr-mcp @ git+https://github.com/HarshShinde0/geocr_mcp.git@main",
"geocr-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}{
"mcp": {
"servers": {
"geocr": {
"command": "uvx",
"args": [
"--from", "geocr-mcp @ git+https://github.com/HarshShinde0/geocr_mcp.git@main",
"geocr-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
}Only needed when iterating on the server code itself:
git clone https://github.com/HarshShinde0/geocr_mcp.git # or this monorepo{
"mcpServers": {
"geocr": {
"command": "uv",
"args": [
"--directory", "/path/to/geocr_mcp",
"run", "geocr-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}Run the same server with an HTTP transport for shared/remote cloud usage:
geocr-mcp-server --transport streamable-http --host 0.0.0.0 --port $PORTDeploy on Render (1-Click Blueprint)
This repository includes a render.yaml blueprint:
Log in to Render Dashboard.
Click New + -> Blueprint and connect repository
HarshShinde0/geocr_mcp.Click Apply. Render will automatically build the container and deploy the server.
Live endpoint: https://geocr-mcp-server.onrender.com/mcp
Connecting Clients to Hosted MCP
In your AI client, IDE, or agent configuration (mcpServers):
{
"mcpServers": {
"geocr-remote": {
"url": "https://geocr-mcp-server.onrender.com/mcp"
}
}
}Behind a custom reverse proxy, terminate TLS at the proxy and set GEOCR_HOST=0.0.0.0 and GEOCR_TRANSPORT=streamable-http.
Environment variables
Variable | Default | Description |
|
| Log level for stderr logging ( |
| system temp dir | Directory where generated files are written (filenames are sanitized to basenames). |
| shipped YAML | Path to an alternate catalog registry file - add catalogs/topics without code changes. |
|
| Bind address for SSE/streamable-http transports (also settable via CLI flags). |
Security considerations
The server performs network requests only when a tool input references a URL or when materializing records from remote distributions (
get_records_preview). Keeplimitsmall in untrusted contexts.Generated files are always written inside
GEOCR_OUTPUT_DIR; path traversal is blocked by reducing filenames to their basename.Run containers as non-root (the provided Dockerfile already does).
Development
cd geocr_mcp
uv venv && uv sync --all-groups # or: python -m pip install -e ".[dev]"
uv run pytest --cov --cov-branch # unit tests (no network required)
uv run ruff check src tests # lint (same rules as awslabs/mcp)
npx @modelcontextprotocol/inspector geocr-mcp-server # interactive debuggingMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables AI assistants to search and access geospatial datasets through STAC (SpatioTemporal Asset Catalog) APIs. Supports querying satellite imagery, weather data, and other geospatial assets with spatial, temporal, and attribute filters.1113MIT
- AlicenseBqualityDmaintenanceProvides tools to search, download, and manage satellite imagery from all Copernicus Sentinel missions via the Copernicus Data Space ecosystem. It enables advanced geospatial queries, temporal coverage analysis, and automated data management for Earth observation tasks.133LGPL 3.0
- FlicenseAqualityDmaintenanceProvides access to the OpenLandMap STAC catalog, offering over 100 global environmental datasets including soil, climate, and vegetation data. It enables AI agents to discover, search, and retrieve Cloud-Optimized GeoTIFFs for global geospatial analysis.27
- AlicenseNot gradedqualityCmaintenanceProvides geospatial data intelligence tools for inspecting, querying, and converting geospatial data using DuckDB Spatial.1MIT
Related MCP Connectors
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
Create, validate, edit, export (markdown/svg/png/mermaid), and search JSON Canvas files.
GIS tools for AI agents: 65 free tools + 8 paid (hazard/site-scouting/GeoJSON export)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HarshShinde0/geocr_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server