MCP Catalogs
Home

cesium-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

cesium-mcp
by gaopengbin
everything
by modelcontextprotocol
Stars★ 103★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

cesium-mcp · Summary

AI-powered CesiumJS 3D globe control with 49 tools for camera, entities, layers, animation & spatial analysis via MCP.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

cesium-mcp · Use cases

  • Natural language control of 3D Earth visualizations in web applications
  • AI-powered GIS analysis through conversational interface
  • Integration of 3D globe capabilities into AI assistants like Claude and Cursor

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

cesium-mcp · Install

Installation

Option 1: Browser Agent (Recommended for quick start)

  1. Visit the [live demo](https://cesium-browser-agent.pages.dev/)
  2. Fork the [examples/browser-agent](https://github.com/gaopengbin/cesium-mcp/tree/main/examples/browser-agent) folder to deploy your own

Option 2: Function Calling in web app

npm install cesium-mcp-bridge

Option 3: MCP Runtime

# stdio mode (Claude Desktop, VS Code, Cursor)
npx cesium-mcp-runtime

# HTTP mode (Dify, remote/cloud MCP clients)
npx cesium-mcp-runtime --transport http --port 3000
Claude Desktop Configuration
{
  "mcpServers": {
    "cesium": {
      "command": "npx",
      "args": ["-y", "cesium-mcp-runtime"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.