nominatim
Server Details
Nominatim MCP — wraps OpenStreetMap Nominatim geocoding API (free, no auth)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-nominatim
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: lookup retrieves objects by OSM IDs, reverse_geocode converts coordinates to addresses, and search_address converts addresses/names to coordinates. There is no overlap in functionality, making tool selection straightforward for an agent.
All tool names follow a consistent snake_case pattern with descriptive verbs (lookup, reverse_geocode, search_address). The naming is predictable and aligns well with their functions, enhancing readability and usability.
With 3 tools, this server is well-scoped for geocoding and OSM data lookup. Each tool serves a distinct and essential function in the domain, avoiding bloat or thin coverage, making the count appropriate for the purpose.
The tool set provides complete coverage for the Nominatim geocoding domain: forward geocoding (search_address), reverse geocoding (reverse_geocode), and OSM object lookup (lookup). There are no obvious gaps, enabling agents to handle typical geospatial queries effectively.
Available Tools
3 toolslookupAInspect
Look up one or more OpenStreetMap objects by their OSM IDs (e.g. "N123456,W654321,R111"). Prefix N=node, W=way, R=relation.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Comma-separated list of OSM IDs with type prefix (e.g. "N123456,W654321"). N=node, W=way, R=relation. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It explains the ID format and prefixes but doesn't mention important behavioral aspects like whether this is a read-only operation, what happens with invalid IDs, rate limits, authentication requirements, or what the return format looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise - a single sentence that efficiently communicates the tool's purpose, parameter format, and object type mapping. Every word earns its place with zero wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns, how errors are handled, or important behavioral constraints. While the purpose is clear, the description lacks sufficient context for an agent to fully understand the tool's behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already fully documents the single parameter. The description repeats the ID format and prefix information from the schema without adding significant additional semantic context beyond what's already in the structured data.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Look up') and resource ('OpenStreetMap objects by their OSM IDs'), with explicit mention of the three object types (node, way, relation). It distinguishes from sibling tools by focusing on ID-based lookup rather than geocoding or address search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (looking up objects by OSM IDs) but doesn't explicitly mention when not to use it or name alternatives. The sibling tools (reverse_geocode, search_address) serve different purposes, but the description doesn't contrast with them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reverse_geocodeAInspect
Reverse geocode a latitude/longitude coordinate pair to a human-readable address using OpenStreetMap Nominatim.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude in decimal degrees (e.g. 48.8584). | |
| lon | Yes | Longitude in decimal degrees (e.g. 2.2945). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the tool uses OpenStreetMap Nominatim, which adds useful context about the data source, but does not mention rate limits, authentication needs, or error handling. The description is accurate but lacks detailed behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and data source without any wasted words. It is appropriately sized and front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 simple parameters) and no output schema, the description is reasonably complete for a read-only operation. It specifies the data source (OpenStreetMap Nominatim), which adds context, but could benefit from mentioning potential limitations or output format to enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents the two parameters. The description adds no additional meaning beyond what the schema provides, such as format examples or constraints, but does not contradict it. Baseline 3 is appropriate as the schema handles parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('reverse geocode') and resource ('latitude/longitude coordinate pair'), and distinguishes the tool's purpose from its siblings by specifying it converts coordinates to addresses, unlike 'lookup' or 'search_address' which likely perform different operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by stating the tool converts coordinates to addresses, but it does not explicitly guide when to use this tool versus alternatives like 'lookup' or 'search_address'. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_addressAInspect
Forward geocode a free-form address or place name using OpenStreetMap Nominatim. Returns matching places with coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return. Defaults to 5, max 50. | |
| query | Yes | Free-form address or place name to search for (e.g. "Eiffel Tower, Paris"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While it mentions the service provider (OpenStreetMap Nominatim) and the return type (matching places with coordinates), it doesn't disclose important behavioral traits like rate limits, authentication requirements, potential costs, privacy considerations, or what happens with ambiguous queries. The description provides basic functionality but lacks operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise - a single sentence that efficiently communicates the tool's purpose, method, and output. Every word earns its place with no redundancy or unnecessary elaboration. The structure is front-loaded with the core functionality immediately clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description provides adequate basic context for a geocoding tool but lacks completeness. It explains what the tool does and what it returns at a high level, but doesn't address important contextual elements like response format details, error conditions, or integration considerations with the OpenStreetMap service that would help an agent use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters (query and limit). The description adds no additional parameter semantics beyond what's in the schema - it mentions 'free-form address or place name' which is already covered in the query parameter description. Baseline score of 3 is appropriate when the schema does all the parameter documentation work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Forward geocode'), resource ('a free-form address or place name'), and technology used ('using OpenStreetMap Nominatim'). It distinguishes this tool from its sibling 'reverse_geocode' by specifying forward geocoding (address→coordinates) rather than reverse geocoding (coordinates→address).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for forward geocoding but doesn't explicitly state when to use this tool versus alternatives like 'lookup' (sibling tool). It provides context about what the tool does but lacks explicit guidance on when to choose this tool over other geocoding or lookup methods available on the server.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!