mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp by baidu-maps | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 426 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 9 mo ago | this month |
mcp · Summary
Baidu Map MCP Server provides comprehensive geospatial APIs for location-based services through MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Use cases
- Building travel planning assistants with location-aware recommendations
- Optimizing logistics and delivery with batch route calculations
- Creating smart city applications with real-time traffic and weather integration
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
mcp · Install
Installation
Python
pip install mcp-server-baidu-mapsNode.js/TypeScript
npm install @baidumap/mcp-server-baidu-mapClaude Desktop Configuration
{
"mcpServers": {
"baidu-maps": {
"command": "python",
"args": ["-m", "mcp_server_baidu_maps"],
"env": {
"BAIDU_MAPS_API_KEY": "<YOUR_API_KEY>"
}
}
}
}Node.js Configuration
{
"mcpServers": {
"baidu-map": {
"command": "npx",
"args": [
"-y",
"@baidumap/mcp-server-baidu-map"
],
"env": {
"BAIDU_MAP_API_KEY": "<YOUR_API_KEY>"
}
}
}
}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