SkyFi MCP Server

SkyFi MCP Server

Enables AI agents to search, compare pricing, and order satellite imagery from 150+ satellites across 12+ providers via natural language.

Category
访问服务器

README

SkyFi MCP Server

A production-ready MCP server for SkyFi's satellite imagery Platform API. Search 150+ satellites from 12+ providers, compare pricing, and order archive or tasking imagery — all through natural language with any AI agent.

SkyFi aggregates imagery from Planet, Vantor, ICEYE, Umbra, Satellogic, and others into a single API with transparent pricing and no contracts. This MCP server makes that API accessible to Claude, GPT, Gemini, LangChain, and any MCP-compatible agent.

Architecture

graph LR
    A[AI Agent] -->|MCP Protocol| B[SkyFi MCP Server]
    B -->|REST API| C[SkyFi Platform API]
    B -->|Nominatim| K[OpenStreetMap]
    C --> D[Planet]
    C --> E[Vantor]
    C --> F[ICEYE]
    C --> G[Umbra]
    C --> H[Satellogic]
    C --> I[Sentinel-1/2]
    C --> J[12+ more...]

Quick Start (< 5 minutes)

1. Install

pip install skyfi-mcp
# or from source:
git clone https://github.com/jpwilson/skyfi-mcp.git
cd skyfi-mcp && pip install -e .

2. Configure

export SKYFI_API_KEY=your_api_key  # Get one at https://app.skyfi.com

3. Run

# Remote server (production)
skyfi-mcp
# → Listening at http://localhost:8000/mcp

# Local stdio (development)
SKYFI_MCP_TRANSPORT=stdio skyfi-mcp

4. Connect your agent

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "skyfi": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

Claude Code:

claude mcp add skyfi http://localhost:8000/mcp

5. Try it (free)

"Find free Sentinel-2 imagery over the Amazon basin"

This uses open data ($0) — no credit card needed.

Tools (20)

Tool Description
SkyFi API
skyfi_whoami Check account status, budget, payment method
skyfi_search_archives Search archive imagery by location, date, sensor, provider
skyfi_get_archive Get full details for an archive image
skyfi_get_pricing Get pricing by AOI, product type, provider
skyfi_create_feasibility Create tasking feasibility check
skyfi_get_feasibility Poll feasibility results and provider windows
skyfi_predict_passes Satellite pass prediction for tasking timing
skyfi_create_archive_order Stage an archive order (shows price, requires confirmation)
skyfi_create_tasking_order Stage a tasking order (shows price, requires confirmation)
skyfi_confirm_order Execute a staged order (this commits money)
skyfi_list_orders List orders with status/type filters
skyfi_get_order Get order details
skyfi_redeliver_order Redeliver completed order to different cloud bucket
skyfi_get_deliverables Get download URLs for completed orders
skyfi_create_notification Set up AOI monitoring with webhook alerts
skyfi_list_notifications List active monitoring notifications
skyfi_manage_notification Get or delete a notification
OpenStreetMap
osm_geocode Convert place names to coordinates + SkyFi-ready WKT polygons
osm_reverse_geocode Convert coordinates to place names and addresses
osm_search_nearby Find features (airports, ports, etc.) near a location

Ordering Safety

Orders use a two-step confirmation pattern:

  1. Stageskyfi_create_archive_order or skyfi_create_tasking_order calls the API and returns a price summary
  2. Confirm — Only skyfi_confirm_order marks the order as human-approved
Order: VANTOR 30cm DAY, 12.4 sq km, $847. Deliver to S3. Confirm?

Free open-data orders ($0 Sentinel-1/2) still show confirmation but note "Free — no charge."

Tasking Workflow

1. skyfi_create_feasibility → get feasibility ID
2. skyfi_get_feasibility    → poll for provider windows
3. skyfi_predict_passes     → (optional) check satellite timing
4. skyfi_create_tasking_order → stage with selected provider/window
5. skyfi_confirm_order      → execute after human approval

Provider-specific: Planet supports provider_window_id selection from feasibility results.

AI Provider Integration

Provider Method Example
Claude Desktop MCP config Setup guide
Claude Code claude mcp add Setup guide
OpenAI Function calling examples/openai_example.py
Anthropic SDK Tool use examples/anthropic_example.py
Google Gemini Function calling examples/gemini_example.py
Google ADK MCPToolset examples/adk_example.py
LangChain MCP adapter examples/langchain_example.py
Vercel AI SDK MCP client Setup guide

Deployment

Railway (recommended for cloud)

railway login && railway init
railway variables set SKYFI_API_KEY=your_key
railway up
# → https://your-project.up.railway.app/mcp

Docker

docker build -t skyfi-mcp .
docker run -p 8000:8000 -e SKYFI_API_KEY=your_key skyfi-mcp

Or with docker-compose:

echo "SKYFI_API_KEY=your_key" > .env
docker-compose up

Configuration

Auth is resolved in priority order:

  1. X-Skyfi-Api-Key request header (cloud deployment)
  2. SKYFI_API_KEY environment variable
  3. Config file at ~/.skyfi/config.json (or SKYFI_CONFIG_PATH)

Environment variables:

Variable Default Description
SKYFI_API_KEY SkyFi Platform API key
SKYFI_MCP_HOST 0.0.0.0 Server bind host
SKYFI_MCP_PORT 8000 Server bind port
SKYFI_MCP_TRANSPORT streamable-http Transport: streamable-http, sse, stdio
SKYFI_API_BASE_URL https://app.skyfi.com/platform-api API base URL override

AOI Constraints

  • Format: WKT POLYGON (convex)
  • Max vertices: 500
  • Max area: 500,000 sq km
  • Coordinates: longitude latitude (WGS84)

Development

# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run with coverage
pytest --cov=skyfi_mcp --cov-report=term-missing

# Lint
ruff check src/ tests/

# Type check
mypy src/

# Security scan
bandit -r src/

Documentation

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Write tests for new functionality
  4. Run the full test suite (pytest)
  5. Run linting and type checks (ruff check . && mypy src/)
  6. Commit with descriptive messages
  7. Open a pull request

License

MIT — see LICENSE.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选