Cesium MCP Server

MCP (Model Context Protocol) integration for CesiumJS

Remote serverstreamable-httpTypeScript

What is the Cesium MCP MCP server?

If you already use Cesium MCP, the cesium mcp mcp server is the piece that lets your assistant work with it directly. MCP (Model Context Protocol) integration for CesiumJS.

What the server does

The minimum-overhead way to add AI commands to CesiumJS

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Toolset — Tools
  • camera — lookAtTransform, startOrbit, stopOrbit, setCameraOptions
  • entity-ext — addBillboard, addBox, addCorridor, addCylinder, addEllipse, addRectangle, addWall
  • animation — createAnimation, controlAnimation, removeAnimation, listAnimations, updateAnimationPath, trackEntity, controlClock, setGlobeLighting
  • tiles — load3dTiles, load3dGaussianSplat, loadTerrain, loadImageryService, loadCzml, loadKml, setEdgeDisplayMode
  • trajectory — playTrajectory
  • heatmap — addHeatmap
  • scene — setSceneOptions, setPostProcess, setIonToken (Runtime only)
  • geolocation — geocode

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Cesium MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Cesium MCP's toolset — Toolset, camera, entity-ext and 6 more — is a fair guide to whether it matches your workflow. It is maintained by gaopengbin; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ToolsetTools
cameralookAtTransform, startOrbit, stopOrbit, setCameraOptions
entity-extaddBillboard, addBox, addCorridor, addCylinder, addEllipse, addRectangle, addWall
animationcreateAnimation, controlAnimation, removeAnimation, listAnimations, updateAnimationPath, trackEntity, controlClock, setGlobeLighting
tilesload3dTiles, load3dGaussianSplat, loadTerrain, loadImageryService, loadCzml, loadKml, setEdgeDisplayMode
trajectoryplayTrajectory
heatmapaddHeatmap
scenesetSceneOptions, setPostProcess, setIonToken (Runtime only)
geolocationgeocode

How to install the Cesium MCP MCP server

{
  "mcpServers": {
    "cesium": {
      "command": "npx",
      "args": ["-y", "serve"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Cesium MCP to Toolset.
  • Use Cesium MCP to camera.
  • Use Cesium MCP to entity-ext.

Frequently asked questions

It connects Cesium MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Toolset, camera, entity-ext, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cesium MCP directly.