everything vs osmmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | osmmcp by NERVsystems | |
|---|---|---|
| Stars | ★ 85,748 | ★ 22 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
osmmcp · Summary
OpenStreetMap MCP server providing precision geospatial tools including geocoding, routing, and neighborhood 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
osmmcp · Use cases
- Travel planning and route optimization for real-world navigation
- Real estate analysis with neighborhood livability metrics
- Location-based business intelligence and competitive analysis
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-everythingosmmcp · Install
Installation
Using Go
go install github.com/NERVsystems/osmmcp@latestWith Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"osmmcp": {
"command": "go",
"args": ["run", "github.com/NERVsystems/osmmcp"],
"env": {}
}
}
}