Skip to main content
Glama
jamesfiltness

geocoding-mcp

geo-coding-mcp

An MCP server for forward geocoding via the Nominatim API (OpenStreetMap). No API key required.

Usage

Claude CLI

claude mcp add --scope user geocoding -- npx -y geo-coding-mcp

Manual configuration

Add to your MCP config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "geocoding": {
      "command": "npx",
      "args": ["-y", "geo-coding-mcp"]
    }
  }
}

Related MCP server: geocodage-mcp

Tool

geocode

Forward geocodes a free-form location query and returns matching places with coordinates and address details.

Parameters:

Name

Type

Required

Description

q

string

yes

Free-form search query, e.g. "221B Baker Street, London"

limit

number

no

Max results to return (1–40, default 5)

countrycodes

string

no

Comma-separated ISO 3166-1 alpha-2 codes to filter by, e.g. "gb,us"

addressdetails

boolean

no

Include structured address breakdown (default true)

viewbox

string

no

Bounding box to boost results: "x1,y1,x2,y2" (min_lon,min_lat,max_lon,max_lat)

bounded

boolean

no

Restrict results to within the viewbox (requires viewbox)

Example response:

Geocoding results for: Big Ben, London
Found 3 result(s)
==================================================

[1] Big Ben, Westminster Bridge Road, Lambeth, London, Greater London, England, SE1 7PB, United Kingdom
    Lat: 51.5007325  Lon: -0.1246254
    Type: tourism/attraction  (importance: 0.7654)
    Address: tourism: Big Ben, road: Westminster Bridge Road, city: London, postcode: SE1 7PB, country: United Kingdom
...

Testing locally

npm run build
npx @modelcontextprotocol/inspector node ./build/index.js

License

MIT

Available Tools

1 tool
geocodeC

Forward geocode a location query using the Nominatim (OpenStreetMap) API. Returns latitude, longitude, and address details for matching places.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesFree-form search query, e.g. '221B Baker Street, London'
limitNoMaximum number of results to return (1-40, default 5)
boundedNoRestrict results to within the viewbox (requires viewbox)
viewboxNoBounding box to boost results: 'x1,y1,x2,y2' (min_lon,min_lat,max_lon,max_lat)
countrycodesNoComma-separated ISO 3166-1 alpha-2 country codes to filter results, e.g. 'gb,us'
addressdetailsNoInclude structured address breakdown in results (default true)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided so the description bears the full load. It discloses the upstream API, which is useful, but says nothing about rate-limit policy, attribution requirements, ambiguity of free-form queries, or how multiple matches are returned.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences with no waste. It is front-loaded with the operation and follows with the return shape.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 6-parameter external-API tool with no annotations and no output schema, the description gives the agent the operation and return fields but omits operational concerns (rate limits, error/zero-result behavior) that an agent would benefit from knowing before calling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents every parameter including defaults and ranges. The description adds no parameter-level meaning beyond what the schema states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (forward geocode) and resource (location query) with the underlying API named (Nominatim/OpenStreetMap). With no siblings to differentiate from, this is clear but stops short of the crispness of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use guidance, no mention of rate limits, no suggestion of alternatives for the reverse-geocoding case. The description is purely definitional.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev1.0.0
    • First observedgeocode

TDQS

B3.2/5.0

Scored across 1 tool

Disambiguation5/5

With only a single tool there is no possibility of overlap or misselection; 'geocode' has one unmistakable purpose (forward geocoding a query string).

Naming Consistency4/5

The lone tool name 'geocode' is clear, lowercase, and well-chosen, but with just one tool there is no verb_noun pattern to demonstrate consistency across the set.

Tool Count3/5

One tool is thin for a service whose domain (Nominatim) naturally includes forward and reverse geocoding plus lookup variants; the surface feels under-built rather than well-scoped.

Completeness3/5

Forward geocoding is covered, but obvious companion operations such as reverse geocoding (coordinates to address) and batch/multi-result lookup are absent, leaving notable gaps in the geocoding lifecycle.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    An MCP server providing geocoding and place discovery services via Nominatim and OpenStreetMap. It enables users to perform forward and reverse geocoding, extract bounding boxes, and find nearby places or administrative hierarchies.
    10
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for geocoding French addresses, POIs, and cadastral parcels using the Géoplateforme API. Supports direct geocoding, reverse geocoding, and capability queries.
    3
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for geocoding, reverse geocoding, place/POI search, and distance calculation using OpenStreetMap Nominatim, with no API key required.
    43 npm
    1
    MIT