Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

Amazon Location Service MCP Config

"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing"

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/amazonaws-com-location.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-location": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-location"
      ],
      "env": {
        "AMAZON_LOCATION_SERVICE_API_KEY": "your_amazon_location_service_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-location": {
      "url": "https://mcpbridge.org/config/amazonaws-com-location.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-location": {
      "url": "https://mcpbridge.org/config/amazonaws-com-location.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-location.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-location": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-location"],
      "env": {
      "AMAZON_LOCATION_SERVICE_API_KEY": "your_amazon_location_service_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/amazonaws-com-location.json

Environment Variables

AMAZON_LOCATION_SERVICE_API_KEY

Replace your_amazon_location_service_api_key with your actual amazon location service api key

Endpoints

POST/tracking/v0/trackers/{TrackerName}/consumers

AssociateTrackerConsumer

POST/tracking/v0/trackers/{TrackerName}/delete-positions

BatchDeleteDevicePositionHistory

POST/geofencing/v0/collections/{CollectionName}/delete-geofences

BatchDeleteGeofence

POST/geofencing/v0/collections/{CollectionName}/positions

BatchEvaluateGeofences

POST/tracking/v0/trackers/{TrackerName}/get-positions

BatchGetDevicePosition

POST/geofencing/v0/collections/{CollectionName}/put-geofences

BatchPutGeofence

POST/tracking/v0/trackers/{TrackerName}/positions

BatchUpdateDevicePosition

POST/routes/v0/calculators/{CalculatorName}/calculate/route

CalculateRoute

POST/routes/v0/calculators/{CalculatorName}/calculate/route-matrix

CalculateRouteMatrix

POST/geofencing/v0/collections

CreateGeofenceCollection