Planetary MCP
Provides tools for Earth Engine dataset search, processing (NDVI, composites, terrain), export (thumbnails, maps), and geospatial models (wildfire risk, flood risk, agricultural monitoring, deforestation, water quality, crop classification).
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., "@Planetary MCPSearch for sentinel datasets in Earth Engine"
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.
š Planetary MCP - Docker Deployment Package
Complete Earth Engine MCP Server with Claude Desktop Integration
This package contains everything needed to run the Earth Engine MCP server in a Docker container on any platform (Windows, Mac, Linux, AWS EC2, etc.).
š¦ What's Included
Dockerized Next.js Server - Fully containerized application
MCP Bridge - Connect Claude Desktop to the server
11 Earth Engine Tools - All geospatial analysis capabilities
Health Monitoring - Automatic health checks
Production Ready - Optimized for deployment
Related MCP server: Axion Planetary MCP
š Quick Start (5 Minutes)
Prerequisites
Docker Desktop installed and running (Download)
Google Earth Engine Service Account Key (JSON file)
Node.js (for Claude Desktop bridge only)
Step 1: Place Your Credentials
# Copy your Earth Engine service account key to:
credentials/ee-key.jsonImportant: Make sure your credentials file is named exactly ee-key.json and is in the credentials/ folder.
Step 2: Start the Server
# Open terminal in this directory and run:
docker-compose up -d --buildThis will:
Build the Docker image (~3-5 minutes first time)
Start the container
Expose the server on
http://localhost:3000
Step 3: Verify It's Working
# Check container status
docker-compose ps
# Test health endpoint
curl http://localhost:3000/api/healthYou should see: {"ok":true,"time":"..."}
Step 4: Configure Claude Desktop
Open Claude Desktop settings
Edit the MCP configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonMac/Linux:
~/.config/Claude/claude_desktop_config.json
Add this configuration (update paths for your system):
{
"mcpServers": {
"planetary-mcp": {
"command": "node",
"args": ["<FULL_PATH_TO_THIS_FOLDER>/mcp-sse-complete.js"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "<FULL_PATH_TO_THIS_FOLDER>/credentials/ee-key.json"
}
}
}
}Example for Windows:
{
"mcpServers": {
"planetary-mcp": {
"command": "node",
"args": ["D:\\earth-engine-mcp-deployment\\mcp-sse-complete.js"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "D:\\earth-engine-mcp-deployment\\credentials\\ee-key.json"
}
}
}
}Restart Claude Desktop
Step 5: Test in Claude
Open Claude Desktop and try:
Search for sentinel datasets in Earth Engineš ļø Management Commands
View Logs
docker-compose logs -fStop Server
docker-compose downRestart Server
docker-compose restartCheck Status
docker-compose psRebuild (after code changes)
docker-compose up -d --buildš Available Tools
Once configured, Claude Desktop will have access to:
Core Tools
earth_engine_data - Search datasets, get geometries, filter collections
earth_engine_process - Calculate indices (NDVI, EVI, etc.), create composites, terrain analysis
earth_engine_export - Generate thumbnails, export data, create map tiles
earth_engine_system - Health checks, execute custom code, system info
earth_engine_map - Create interactive web maps
Geospatial Models
wildfire_risk_assessment - Comprehensive wildfire risk analysis
flood_risk_assessment - Flood risk based on terrain and precipitation
agricultural_monitoring - Crop health and agricultural conditions
deforestation_detection - Forest loss detection between time periods
water_quality_monitoring - Water quality using spectral indices
crop_classification - ML-based crop and land cover classification
š Testing
Test Health Endpoint
curl http://localhost:3000/api/healthTest Earth Engine Connection (PowerShell)
$body = @{ tool = "earth_engine_system"; arguments = @{ operation = "health" } } | ConvertTo-Json
Invoke-RestMethod -Method POST -Uri "http://localhost:3000/api/mcp/sse" -ContentType "application/json" -Body $bodyTest Data Search (PowerShell)
$body = @{ tool = "earth_engine_data"; arguments = @{ operation = "search"; query = "sentinel"; limit = 5 } } | ConvertTo-Json
Invoke-RestMethod -Method POST -Uri "http://localhost:3000/api/mcp/sse" -ContentType "application/json" -Body $bodyšØ Troubleshooting
Container Won't Start
# Check logs for errors
docker-compose logs
# Try rebuilding from scratch
docker-compose down -v
docker-compose up -d --buildPort 3000 Already in Use
Windows:
# Find what's using port 3000
netstat -ano | findstr :3000
# Stop the process (replace <PID>)
Stop-Process -Id <PID> -ForceMac/Linux:
# Find what's using port 3000
lsof -i :3000
# Kill the process
kill -9 <PID>Docker Desktop Not Running
Make sure Docker Desktop is started before running docker-compose commands.
Earth Engine Authentication Fails
Verify your credentials file exists:
credentials/ee-key.jsonCheck the file is valid JSON
Ensure the service account has Earth Engine access
Restart container:
docker-compose restart
Claude Desktop Can't Connect
Verify the server is running:
docker-compose psTest health endpoint:
curl http://localhost:3000/api/healthCheck Claude Desktop config paths are absolute (not relative)
Restart Claude Desktop after config changes
š Deploying to Cloud (AWS EC2, Azure, GCP)
This same Docker setup works on any cloud platform:
AWS EC2 / Linux Server
# 1. Install Docker
sudo yum install docker -y # Amazon Linux
# OR
sudo apt install docker.io -y # Ubuntu
sudo systemctl start docker
sudo systemctl enable docker
# 2. Install Docker Compose
sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# 3. Upload this folder to server
scp -r earth-engine-mcp-deployment/ user@server:~/
# 4. Start container
cd earth-engine-mcp-deployment
docker-compose up -d --build
# 5. Verify
curl http://localhost:3000/api/healthConnect Claude Desktop to Remote Server
Update your Claude Desktop config to point to the server:
{
"mcpServers": {
"planetary-mcp": {
"command": "node",
"args": ["<PATH_TO>/mcp-sse-complete.js"],
"env": {
"MCP_SERVER_URL": "http://YOUR-SERVER-IP:3000"
}
}
}
}š Performance & Resources
Container Resources
CPU: 1-2 cores recommended
Memory: 2-4 GB recommended
Disk: ~500 MB for container + data
Response Times
Health check: <100ms
Dataset search: <1s
NDVI calculation: 1-5s
Crop classification: 20-60s
Interactive maps: 5-15s
š Security Notes
Credentials are mounted as read-only in the container
No credentials are embedded in the Docker image
Service runs on localhost by default (not exposed externally)
For production, use reverse proxy (Nginx) with SSL
š File Structure
earth-engine-mcp-deployment/
āāā README.md # This file
āāā Dockerfile # Container definition
āāā docker-compose.yml # Orchestration config
āāā .dockerignore # Files to exclude
āāā package.json # Dependencies
āāā next.config.ts # Next.js config
āāā tsconfig.json # TypeScript config
āāā mcp-sse-complete.js # MCP bridge for Claude Desktop
āāā credentials/ # Your credentials
ā āāā ee-key.json # Earth Engine service account key
āāā src/ # Core MCP implementation
ā āāā mcp/ # MCP server & tools
ā āāā gee/ # Earth Engine client
ā āāā ...
āāā app/ # Next.js API routes
ā āāā api/
ā āāā health/ # Health check endpoint
ā āāā mcp/ # MCP endpoints
āāā public/ # Static assetsš Support
Common Issues
Q: Tools not showing in Claude Desktop
A: Restart Claude Desktop after editing config file
Q: "Connection refused" errors
A: Check if container is running with docker-compose ps
Q: Earth Engine authentication errors
A: Verify credentials/ee-key.json is valid and service account has EE access
Q: Container exits immediately
A: Check logs with docker-compose logs for error messages
Getting Help
Check logs:
docker-compose logsVerify health:
curl http://localhost:3000/api/healthTest Earth Engine auth manually
Review container status:
docker-compose ps
š License
This package is provided for deployment and use. See main repository for license details.
ā Quick Checklist
Before contacting support, verify:
Docker Desktop is running
credentials/ee-key.jsonexists and is validContainer is running:
docker-compose psshows "healthy"Health endpoint responds:
curl http://localhost:3000/api/healthClaude Desktop config has correct absolute paths
Claude Desktop was restarted after config changes
Ready to deploy? Start with Step 1 above! š
This server cannot be installed
Maintenance
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
- Flicense-qualityDmaintenanceA production-ready MCP server ecosystem providing Claude AI with 150+ specialized tools across enhanced memory, data analytics, security, design, and infrastructure domains with PostgreSQL, Redis, Qdrant, and Docker orchestration.Last updated
- Alicense-qualityDmaintenanceEnables MCP clients to access Google Earth Engine's satellite imagery and geospatial analysis capabilities. Provides tools for vegetation analysis, crop classification, disaster monitoring, and interactive map creation using petabytes of satellite data.Last updated9221MIT
- AlicenseBqualityDmaintenanceAn MCP server that enables Claude to manage infrastructure across Kubernetes, Docker, Prometheus, and Terraform through natural language. It provides over 42 specialized tools with a safety-first design, including risk-based command classification and audit logging.Last updated43MIT
- Alicense-qualityDmaintenanceMCP server for interacting with Google Earth Engine, enabling geospatial analysis such as dataset visualization, statistics computation, and search via AI assistants.Last updated13MIT
Related MCP Connectors
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
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/Dhenenjay/planetary-mcp-deployment'
If you have feedback or need assistance with the MCP directory API, please join our Discord server