open-streetmap-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
open-streetmap-mcp by jagan-shanmugam | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 191 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
open-streetmap-mcp · Summary
A comprehensive OpenStreetMap MCP server enabling geocoding, routing, POI searches, and neighborhood analysis through location-based tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
open-streetmap-mcp · Use cases
- Finding optimal meeting points for multiple people
- Analyzing neighborhood livability for real estate decisions
- Locating EV charging stations with specific connector types
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
open-streetmap-mcp · Install
Installation
In MCP Hosts like Claude Desktop, Cursor, Windsurf, etc.
"mcpServers": {
"osm-mcp-server": {
"command": "uvx",
"args": [
"osm-mcp-server"
]
}
}Local Development
- Install the package in development mode:
pip install -e .- Start the server:
osm-mcp-servereverything · 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