Geocoding

Provides geocoding services by integrating with the Nominatim API.
  • javascript

3

GitHub Stars

javascript

Language

6 months ago

First Indexed

2 months ago

Catalog Refreshed

Documentation & install

Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.

Installation

Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "geocoding-ai-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@geocoding-ai/mcp"
      ]
    }
  }
}

This Geocoding MCP Server provides geocoding services by querying the Nominatim API through a lightweight MCP server. It lets you obtain geographic coordinates from place names and addresses via your MCP clients, integrating geospatial lookup into your workflows.

How to use

You connect to this MCP server from your MCP client to perform geocoding lookups. Use it to translate place names, addresses, or queries into latitude/longitude coordinates, optionally leveraging additional metadata returned by Nominatim. Treat the server as a standard MCP endpoint: send a geocoding request, and your client will receive structured location results that you can display or feed into maps and spatial analyses.

How to install

Prerequisites you need before you start:

  • Node.js version 18.0.0 or newer
  • An MCP client such as Cursor, Windsurf, Claude Desktop, Trae, or another MCP client

Install steps you should follow to set up the MCP server in Claude Desktop:

{
  "mcpServers": {
    "geocoding": {
      "command": "npx",
      "args": [
        "-y",
        "@geocoding-ai/mcp"
      ]
    }
  }
}
Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
Geocoding MCP Server - geocoding-ai/mcp | VeilStrat