MCP Catalogs
Home

aws-geocode-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

aws-geocode-mcp
by Kanahiro
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score2877
Official
Categories
AI / LLM ToolsOtherDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

aws-geocode-mcp · Summary

An MCP server for geocoding using Amazon Location Service that converts addresses to coordinates.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

aws-geocode-mcp · Use cases

  • Converting physical addresses to latitude and longitude coordinates for mapping applications
  • Implementing location-based search functionality in AI assistants
  • Enabling proximity-based queries for nearby businesses or points of interest

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

aws-geocode-mcp · Install

Installation

  1. First, obtain an API key from AWS Management Console with the following scopes:

- Geocode - SearchNearby

  1. Install the package globally:
npm install -g aws-geocode-mcp
  1. Configure Claude Desktop by adding this to your claude_desktop_config.json:
{
 "mcpServers": {
  "geocoder": {
   "command": "npx",
   "args": ["aws-geocode-mcp"],
   "env": {
    "AMAZON_LOCATION_API_KEY": "YOUR_API_KEY",
    "AWS_REGION": "us-east-1"
   }
  }
 }
}

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.