EO-MCP
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., "@EO-MCPFind clearest Sentinel-2 scene over [73,33.65,73.12,33.75] and compute NDVI."
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.
EO-MCP
EO-MCP is a Python Model Context Protocol (MCP) server for discovering and analysing Sentinel-2 Level-2A imagery. It gives AI agents a small, focused toolset for finding scenes, checking their suitability, computing spectral indices, and summarising an index inside a polygon.
The server reads only the required windows from cloud-optimized GeoTIFFs hosted by the Microsoft Planetary Computer. It does not download complete Sentinel-2 scenes.
Features
Search the live Sentinel-2 L2A STAC catalog by bounding box, date, and cloud cover.
Inspect scene-level cloud and nodata metadata before performing analysis.
Confirm that a scene footprint covers the requested area of interest.
Compute NDVI, NDWI, and NBR from remote raster windows.
Calculate polygon-clipped min, max, mean, and pixel count.
Return structured, agent-friendly results with processing metadata.
The intended workflow is:
stac_search → scene_quality → compute_index
└─→ quick_statsAlways call scene_quality before computing an index.
Related MCP server: Google Earth Engine MCP Server
Tools
Tool | Purpose | Key inputs |
| Find the clearest Sentinel-2 L2A scenes intersecting an area. |
|
| Check cloud cover, nodata, and scene-footprint coverage. |
|
| Compute summary statistics for NDVI, NDWI, or NBR over a rectangular area. |
|
| Compute index statistics clipped to a WGS84 GeoJSON Polygon or MultiPolygon. |
|
Bounding boxes use WGS84 coordinates in this order:
[west, south, east, north]Dates use ISO YYYY-MM-DD format.
Supported indices
Index | Formula | Typical use |
NDVI |
| Vegetation condition and greenness |
NDWI |
| Surface-water detection |
NBR |
| Burn severity and fire impact |
Sentinel-2 digital numbers are converted to reflectance before the index is calculated. EO-MCP also accounts for the offset introduced with processing baseline 04.00 and later.
Requirements
Python 3.12 or newer
Internet access to the Planetary Computer STAC API and Sentinel-2 COG assets
No Planetary Computer API key is required for the current public-data workflow.
Quick start
From the repository root:
uv sync --frozen
uv run python -c "import eo_mcp; print('eo_mcp import: ok')"
uv run fastmcp inspect src/eo_mcp/app.pyThe inspect command should report the server name EO-MCP and four tools.
To start the STDIO server manually:
uv run fastmcp run src/eo_mcp/app.pyAn STDIO server waits for an MCP client and usually produces no interactive
prompt. Use an MCP client or fastmcp call to invoke its tools.
Test from the command line
Search for Sentinel-2 scenes:
uv run fastmcp call \
--server-spec src/eo_mcp/app.py \
--target stac_search \
--input-json '{
"bbox": [73.0, 33.65, 73.12, 33.75],
"start_date": "2024-06-01",
"end_date": "2024-08-31",
"max_cloud_cover": 10,
"limit": 1
}' \
--jsonCheck the selected scene:
uv run fastmcp call \
--server-spec src/eo_mcp/app.py \
--target scene_quality \
--input-json '{
"scene_id": "S2B_MSIL2A_20240603T054639_R048_T43SCT_20240603T090813",
"bbox": [73.0, 33.65, 73.12, 33.75]
}' \
--jsonCompute NDVI after the quality check passes:
uv run fastmcp call \
--server-spec src/eo_mcp/app.py \
--target compute_index \
--input-json '{
"scene_id": "S2B_MSIL2A_20240603T054639_R048_T43SCT_20240603T090813",
"bbox": [73.0, 33.65, 73.02, 33.67],
"index_name": "NDVI"
}' \
--jsonFor the installed FastMCP version, pass src/eo_mcp/app.py as the server
specification without appending :mcp.
Connect to Codex or another MCP client
EO-MCP currently runs as a local STDIO server. Configure the client with an absolute project path so it can launch the server from any working directory.
{
"mcpServers": {
"eo-mcp": {
"command": "uv",
"args": [
"run",
"--project",
"/absolute/path/to/eo-mcp",
"--frozen",
"fastmcp",
"run",
"/absolute/path/to/eo-mcp/src/eo_mcp/app.py"
]
}
}
}If the client cannot find uv, replace "uv" with the absolute path returned
by:
command -v uvWith the Codex CLI, the equivalent registration command is:
codex mcp add eo-mcp -- \
/absolute/path/to/uv run \
--project /absolute/path/to/eo-mcp \
--frozen fastmcp run \
/absolute/path/to/eo-mcp/src/eo_mcp/app.pyRestart the client or open a new session after saving the configuration. In
Codex, use /mcp to confirm that eo-mcp is connected.
Example agent request:
Find a low-cloud Sentinel-2 scene for Lahore during July 2026. Check the
scene's quality, then compute NDVI for a small area and report the mean.GeoJSON polygon example
quick_stats accepts either a GeoJSON geometry or a GeoJSON Feature:
{
"type": "Polygon",
"coordinates": [
[
[73.002, 33.652],
[73.018, 33.652],
[73.018, 33.668],
[73.002, 33.668],
[73.002, 33.652]
]
]
}Coordinates must be WGS84 longitude/latitude values. Polygon and MultiPolygon geometries are supported.
How index processing works
EO-MCP retrieves the requested STAC item and signs its asset URLs.
It transforms the WGS84 area into the source raster coordinate system.
Rasterio reads only the intersecting COG window over HTTPS.
Bands on a different grid are aligned to the reference band.
Digital numbers are converted to reflectance and the selected index is calculated.
The server returns statistics and processing metadata rather than the full raster array.
compute_index reports min, max, mean, median, standard deviation, 2nd and
98th percentiles, pixel counts, CRS, resolution, and the source window.
quick_stats clips the index raster to the supplied polygon and reports min,
max, mean, and count.
Quality rules and operational limits
A scene is marked usable when all of the following are true:
Scene-level cloud cover is at most 20%.
Scene-level nodata is at most 10%.
The scene footprint covers at least 99% of the requested area.
Important limitations:
Cloud and nodata percentages come from scene-level STAC metadata; they are not calculated specifically for the requested bounding box.
Index calculations do not apply a per-pixel cloud mask. Select a suitable scene with
scene_qualityfirst.A rectangular index request is limited to 4,000,000 reference-grid pixels. Reduce the bounding box if this limit is exceeded.
compute_indexsummarises the full rectangular window. Usequick_statswhen results must be clipped to an exact administrative, farm, water, or other polygon boundary.Signed Planetary Computer asset URLs expire. Search again instead of storing them as permanent download links.
Large requests depend on remote-network speed and upstream service availability.
Project structure
eo-mcp/
├── pyproject.toml
├── src/
│ └── eo_mcp/
│ ├── __init__.py
│ ├── app.py # FastMCP server and registered tools
│ ├── tools.py # STAC, raster, index, and zonal-stat logic
│ └── utils.py # Input validation helpers
└── README.mdTechnology
FastMCP for the MCP server
PySTAC Client for STAC discovery
Microsoft Planetary Computer for the Sentinel-2 L2A catalog and signed assets
Rasterio and NumPy for windowed raster processing
Rasterstats and Shapely for polygon statistics
uvfor dependency and project management
Remote deployment
STDIO is intended for local clients. To share EO-MCP across machines, expose it using FastMCP's Streamable HTTP transport, add authentication, and deploy it on a Python or container hosting platform. Do not publish an unauthenticated analysis endpoint to the public internet.
See the FastMCP HTTP deployment guide for the supported remote-server patterns.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/ShafHaider007/eo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server