cesium-ai-integrations vs everything
Side-by-side comparison to help you pick between these two MCP servers.
cesium-ai-integrations by CesiumGS | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 70 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
cesium-ai-integrations · Summary
Reference integrations connecting Cesium ecosystem with AI systems including MCP tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
cesium-ai-integrations · Use cases
- Building geospatially aware AI applications that reason about 3D data
- Enabling AI assistants to control CesiumJS camera and manage entities
- Creating retrieval pipelines for geospatial data analysis
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-ai-integrations · Install
Installation depends on which MCP integration you want to use. Generally:
- Clone the repository:
git clone https://github.com/CesiumGS/cesium-ai-integrations.git - Navigate to the specific integration folder under
mcp/orskills/ - Follow the setup instructions in that integration's README
For Claude Desktop integration, you would typically add the MCP server configuration to your claude_desktop_config.json:
{
"mcpServers": {
"cesium-mcp": {
"command": "node",
"args": ["path/to/cesium-mcp/server.js"]
}
}
}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