Best for
- Developers building AI-driven situational awareness tools or geospatial data exploration.
- Teams looking to add MCP control to a CesiumJS-based platform.
WorldWideView offers a unique MCP server for controlling a live globe visualization, but its tool set is underdocumented. It suits developers interested in geospatial AI integration but requires API key management and plugin loading awareness.
WorldWideView is a real-time geospatial engine that visualizes live global data on an interactive 3D globe. Using a dynamic 'All-Bundle' plugin architecture, independent data sources—like live aircraft, maritime vessels, or conflict events—are ingested and rendered decoupled from the core 3D viewer. The platform includes a built-in MCP endpoint (/api/mcp) that allows MCP clients (e.g., Claude Desktop, Cursor) to connect directly with Bearer token authentication. The server also exposes an optional Agent Bus (HTTP+SSE control surface) for external tools to drive the running browser session.
Generate an API key from the /setup page of your running WorldWideView instance. Then add the following configuration to your MCP client (replace https://your-host with the actual origin): { "mcpServers": { "worldwideview": { "type": "http", "url": "https://your-host/api/mcp", "headers": { "Authorization": "Bearer <your-api-key>" } } } }
{
"mcpServers": {
"worldwideview": {
"type": "http",
"url": "https://your-host/api/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}