# io.github.gaopengbin/cesium-mcp-runtime (npm · cesium-mcp-runtime)

AI-powered 3D globe control via MCP. Camera, layers, markers, spatial analysis with CesiumJS.

- Trust score: 65/100 (medium)
- Change this week: +40
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `cesium-mcp-runtime`: 65/100 (this document), [markdown](https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime.md), [page](https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime)

## Channel facts

- Registry: `npm`
- Package: `cesium-mcp-runtime`
- Version: `1.139.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 4 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1438 tokens (~68/item across 21 items; 19 tools + 2 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 86/100
  - 79% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add gaopengbin-cesium-mcp-runtime -- npx -y cesium-mcp-runtime
```

### Codex

```bash
codex mcp add gaopengbin-cesium-mcp-runtime -- npx -y cesium-mcp-runtime
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "gaopengbin-cesium-mcp-runtime": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "cesium-mcp-runtime"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add gaopengbin-cesium-mcp-runtime --command npx --arg -y --arg cesium-mcp-runtime
```

### Hermes

```yaml
mcp_servers:
  gaopengbin-cesium-mcp-runtime:
    command: "npx"
    args: ["-y", "cesium-mcp-runtime"]
```

### Other

```json
{
  "mcpServers": {
    "gaopengbin-cesium-mcp-runtime": {
      "command": "npx",
      "args": [
        "-y",
        "cesium-mcp-runtime"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 65, +60)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Tool coverage: unverified → 79
- [functional] Licence: MIT

### 2026-08-01 (score 5, −20)

- [functional regression] Tool coverage: 79 → unverified
- [functional regression] Schema quality: 100 → unverified

### 2026-07-31 (score 25, −26)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 51, +27)

- [functional improvement] Tool coverage: unverified → 79
- [functional improvement] Schema quality: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified

### 2026-07-28 (score 24, −1)

- [functional regression] Dependency health: partial → unverified

### 2026-07-27 (score 25)

First indexed and scored.

## MCP tools (19)

### `flyTo` (~123 tokens)

飞行到指定经纬度位置（带动画过渡）

Input parameters:

- `duration` (number): 飞行动画时长（秒）
- `heading` (number): 航向角（度），0 为正北
- `height` (number): 相机高度（米），默认 50000
- `latitude` (number, required): 纬度（-90 ~ 90）
- `longitude` (number, required): 经度（-180 ~ 180）
- `pitch` (number): 俯仰角（度），-90 为正下方

### `addGeoJsonLayer` (~100 tokens)

添加 GeoJSON 图层到地图（支持 Point/Line/Polygon，可配置颜色/分级/分类渲染）

Input parameters:

- `data` (object, required): GeoJSON FeatureCollection 对象
- `id` (string): 图层ID（不传则自动生成）
- `name` (string): 图层显示名称
- `style` (object): 样式配置（color, opacity, pointSize, choropleth, category）

### `addLabel` (~82 tokens)

为 GeoJSON 要素添加文本标注（显示属性值）

Input parameters:

- `data` (object, required): GeoJSON FeatureCollection 对象
- `field` (string, required): 用作标注文本的属性字段名（如 "name"、"population"）
- `style` (object): 标注样式（font, fillColor, outlineColor, scale 等）

### `addHeatmap` (~56 tokens)

添加热力图图层（基于 GeoJSON 点数据生成热力可视化）

Input parameters:

- `data` (object, required): GeoJSON Point FeatureCollection
- `radius` (number): 热力影响半径（像素）

### `removeLayer` (~42 tokens)

从地图上移除指定图层（按图层ID）

Input parameters:

- `id` (string, required): 要移除的图层ID（可通过 listLayers 获取）

### `setBasemap` (~55 tokens)

切换底图风格（暗色/卫星影像/标准）

Input parameters:

- `basemap` (string, required): 底图类型：dark=暗色, satellite=卫星影像, standard=标准

### `screenshot` (~20 tokens)

截取当前地图视图（返回 base64 PNG）

### `highlight` (~60 tokens)

高亮指定图层的要素

Input parameters:

- `color` (string): 高亮颜色（CSS 格式）
- `featureIndex` (number): 要素索引（不传则高亮全部）
- `layerId` (string, required): 图层ID

### `setView` (~107 tokens)

瞬间切换到指定经纬度视角（无动画）

Input parameters:

- `heading` (number): 航向角（度）
- `height` (number): 高度（米）
- `latitude` (number, required): 纬度（-90 ~ 90）
- `longitude` (number, required): 经度（-180 ~ 180）
- `pitch` (number): 俯仰角（度）
- `roll` (number): 翻滚角（度）

### `getView` (~25 tokens)

获取当前相机视角信息（经纬度、高度、角度）

### `zoomToExtent` (~87 tokens)

缩放到指定地理范围

Input parameters:

- `duration` (number): 动画时长（秒）
- `east` (number, required): 东边界经度（度）
- `north` (number, required): 北边界纬度（度）
- `south` (number, required): 南边界纬度（度）
- `west` (number, required): 西边界经度（度）

### `addMarker` (~111 tokens)

在指定经纬度添加标注点，返回 layerId 供后续操作

Input parameters:

- `color` (string): 标注颜色（CSS 格式）
- `id` (string): 自定义图层ID（不传则自动生成）
- `label` (string): 标注文本
- `latitude` (number, required): 纬度（-90 ~ 90）
- `longitude` (number, required): 经度（-180 ~ 180）
- `size` (number): 点大小（像素）

### `setLayerVisibility` (~36 tokens)

设置图层可见性

Input parameters:

- `id` (string, required): 图层ID
- `visible` (boolean, required): 是否可见

### `listLayers` (~26 tokens)

获取当前所有图层列表（含 ID、名称、类型、可见性）

### `updateLayerStyle` (~87 tokens)

修改已有图层的样式（颜色、透明度、标注样式等）

Input parameters:

- `labelStyle` (object): 标注样式（font, fillColor, outlineColor, outlineWidth, scale 等）
- `layerId` (string, required): 图层ID
- `layerStyle` (object): 图层样式（color, opacity, strokeWidth, pointSize）

### `playTrajectory` (~102 tokens)

播放移动轨迹动画

Input parameters:

- `coordinates` (array, required): 轨迹坐标数组 [[lon, lat, alt?], ...]
- `durationSeconds` (number): 动画时长（秒）
- `id` (string): 轨迹图层ID
- `label` (string): 移动体标签
- `name` (string): 轨迹名称
- `trailSeconds` (number): 尾迹长度（秒）

### `load3dTiles` (~96 tokens)

加载 3D Tiles 数据集（如建筑白膜、城市模型）

Input parameters:

- `heightOffset` (number): 高度偏移（米）
- `id` (string): 图层ID
- `maximumScreenSpaceError` (number): 最大屏幕空间误差（值越小越精细）
- `name` (string): 图层名称
- `url` (string, required): tileset.json 的 URL

### `loadTerrain` (~80 tokens)

加载或切换地形（平坦/ArcGIS/CesiumIon/自定义 URL）

Input parameters:

- `cesiumIonAssetId` (number): Cesium Ion 资产ID（provider=cesiumion 时需要）
- `provider` (string, required): 地形提供者类型
- `url` (string): 自定义地形服务 URL

### `loadImageryService` (~103 tokens)

加载影像服务图层（WMS/WMTS/XYZ/ArcGIS MapServer）

Input parameters:

- `id` (string): 图层ID
- `layerName` (string): WMS/WMTS 图层名
- `name` (string): 图层名称
- `opacity` (number): 透明度（0~1）
- `serviceType` (string, required): 服务类型
- `url` (string, required): 影像服务 URL

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime#diagnostics

## Score history

- 2026-08-03: 65
- 2026-08-02: 65
- 2026-08-01: 5
- 2026-07-31: 25
- 2026-07-30: 51
- 2026-07-28: 24
- 2026-07-27: 25

## Links

- npm package: https://www.npmjs.com/package/cesium-mcp-runtime
- Socket report: https://socket.dev/npm/package/cesium-mcp-runtime
- Repository: https://github.com/gaopengbin/cesium-mcp
- Changelog RSS feed: https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime/changelog.json
- HTML version of this page: https://verifymcp.io/servers/gaopengbin-cesium-mcp-runtime/cesium-mcp-runtime
