MCP Catalogs
Home

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
Score4577
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit10 mo agothis 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

  1. Install the package in development mode:
pip install -e .
  1. Start the server:
osm-mcp-server

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.