Skip to main content
Glama
ogSINGH

OpenStreetMap MCP Server v2

by ogSINGH

OpenStreetMap (OSM) MCP Server v2

CI

An OpenStreetMap MCP server implementation that enhances LLM capabilities with location-based services and geospatial data.

This is a maintained fork. The original project is jagan-shanmugam/open-streetmap-mcp by Jagan Shanmugam, who designed and wrote all of the tools here. Upstream has had no commits since July 2025 and no longer starts against the current mcp SDK, so this fork exists to keep it working and to review and land community contributions. Issues and pull requests are welcome.

What changed in v2

  • Works with mcp 2.x. The SDK renamed FastMCP to MCPServer; uvx osm-mcp-server now fails at import. This fork targets mcp>=2.0.

  • Fixed Overpass 406 Not Acceptable. overpass-api.de rejects the old User-Agent; every request now sends osm-mcp-server-v2/<version>.

  • Fixed search_category with subcategories (upstream #6 by Jagan Shanmugam): Overpass QL has no or inside a tag filter; a regex filter is used instead.

  • Gemini CLI compatibility (upstream #13 by wb1016): suggest_meeting_point takes a typed {latitude, longitude} model so the schema has no additionalProperties.

  • HTTP transport and Docker (upstream #10 by robertlestak and #11 by JumpLink): --transport stdio|sse|streamable-http, --host, --port, plus a Dockerfile.

  • Progress and log messages from tools are now actually delivered (they were never awaited).

  • OVERPASS_API_URL lets you point at an Overpass mirror or self-hosted instance.

  • Tests (uv run pytest) and CI.

Related MCP server: Magic Lane MCP Server

Demo

Meeting Point Optimization

Meeting Point Use Case

Neighborhood Analysis

Neighborhood Analysis Use Case

Parking Search Use Case

Installation

In MCP Hosts like Claude Desktop, Cursor, Windsurf, etc.

  • Requires Python 3.13+ and uv.

    "mcpServers": {
      "osm-mcp-server": {
        "command": "uvx",
        "args": [
          "osm-mcp-server-v2"
        ]
      }
    }

    Until the package is on PyPI, run it straight from GitHub:

    "mcpServers": {
      "osm-mcp-server": {
        "command": "uvx",
        "args": [
          "--from",
          "git+https://github.com/ogSINGH/open-streetmap-mcp-v2",
          "osm-mcp-server"
        ]
      }
    }

HTTP transport

osm-mcp-server --transport streamable-http --host 127.0.0.1 --port 8000

The MCP endpoint is then http://127.0.0.1:8000/mcp. --transport sse is also available. The server binds to localhost by default; there is no authentication, so only expose it on 0.0.0.0 behind something that adds it.

Docker

docker build -t osm-mcp-server-v2 .
docker run -p 8000:8000 osm-mcp-server-v2
# custom port
docker run -p 3004:3004 -e PORT=3004 osm-mcp-server-v2

The image serves Streamable HTTP on 0.0.0.0:$PORT (default 8000) as a non-root user.

Configuration

Variable

Default

Purpose

OVERPASS_API_URL

https://overpass-api.de/api/interpreter

Overpass endpoint. The public instance rate-limits aggressively; point this at a mirror (for example https://overpass.openstreetmap.fr/api/interpreter) or your own instance for heavy use.

OSM_REQUEST_TIMEOUT

60

Per-request timeout in seconds for all upstream HTTP calls.

MCP hosts launch the server as a subprocess and forward only a minimal environment, so set these in the host config rather than your shell:

"osm-mcp-server": {
  "command": "uvx",
  "args": ["osm-mcp-server-v2"],
  "env": { "OVERPASS_API_URL": "https://overpass.openstreetmap.fr/api/interpreter" }
}

All requests to Nominatim, Overpass, OSRM and the tile servers carry a User-Agent of osm-mcp-server-v2/<version>, as their usage policies require.

Features

This server provides LLMs with tools to interact with OpenStreetMap data, enabling location-based applications to:

  • Geocode addresses and place names to coordinates

  • Reverse geocode coordinates to addresses

  • Find nearby points of interest

  • Get route directions between locations

  • Search for places by category within a bounding box

  • Suggest optimal meeting points for multiple people

  • Explore areas and get comprehensive location information

  • Find schools and educational institutions near a location

  • Analyze commute options between home and work

  • Locate EV charging stations with connector and power filtering

  • Perform neighborhood livability analysis for real estate

  • Find parking facilities with availability and fee information

Components

Resources

The server implements location-based resources:

  • location://place/{query}: Get information about places by name or address

  • location://map/{style}/{z}/{x}/{y}: Get styled map tiles at specified coordinates

Tools

The server implements several geospatial tools:

  • geocode_address: Convert text to geographic coordinates

  • reverse_geocode: Convert coordinates to human-readable addresses

  • find_nearby_places: Discover points of interest near a location

  • get_route_directions: Get turn-by-turn directions between locations

  • search_category: Find places of specific categories in an area

  • suggest_meeting_point: Find optimal meeting spots for multiple people

  • explore_area: Get comprehensive data about a neighborhood

  • find_schools_nearby: Locate educational institutions near a specific location

  • analyze_commute: Compare transportation options between home and work

  • find_ev_charging_stations: Locate EV charging infrastructure with filtering

  • analyze_neighborhood: Evaluate neighborhood livability for real estate

  • find_parking_facilities: Locate parking options near a destination

Local Testing

Running the Server

To run the server locally:

  1. Install dependencies (creates .venv):

uv sync
  1. Run the tests:

uv run pytest
  1. Start the server over stdio:

uv run osm-mcp-server

Testing with Example Clients

The repository includes two example clients in the examples/ directory:

Basic Client Example

client.py demonstrates basic usage of the OSM MCP server:

uv run python examples/client.py

This will:

  • Connect to the locally running server

  • Get information about San Francisco

  • Search for restaurants in the area

  • Retrieve comprehensive map data with progress tracking

LLM Integration Example

location_assistant_client.py provides a helper class designed for LLM integration:

uv run python examples/location_assistant_client.py

This example shows how an LLM can use the Location Assistant to:

  • Get location information from text queries

  • Find nearby points of interest

  • Get directions between locations

  • Find optimal meeting points

  • Explore neighborhoods

Writing Your Own Client

See examples/client.py: it spawns the server over stdio with mcp.client.stdio.stdio_client, wraps it in ClientSession, and calls tools with session.call_tool(name, arguments).

Claude Desktop config for local server

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

"mcpServers": {
  "osm-mcp-server": {
    "command": "uv",
    "args": [
      "--directory",
      "/path/to/osm-mcp-server",
      "run",
      "osm-mcp-server"
    ]
  }
}

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:

uv sync
  1. Build package distributions:

uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI: push a v* tag. .github/workflows/publish-to-pypi.yml builds and publishes with PyPI trusted publishing (no token needed once the publisher is configured on PyPI for this repo).

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector uv --directory /path/to/osm-mcp-server run osm-mcp-server

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

Credits

  • Jagan Shanmugam (@jagan-shanmugam) — original author of open-streetmap-mcp, including every tool and resource here.

  • Contributors whose upstream pull requests were reviewed and adapted into v2: Sesame2 (#7, superseded by #6), robertlestak (#10), JumpLink (#11), wb1016 (#13).

  • Maintained by @ogSINGH.

Licensed under the MIT License, same as upstream. See LICENSE.

Available Tools

12 tools
analyze_commuteA

Perform a detailed commute analysis between home and work locations.

This advanced tool analyzes commute options between two locations (typically home and work), comparing multiple transportation modes and providing detailed metrics for each option. Includes estimated travel times, distances, turn-by-turn directions, and other commute-relevant data. Essential for real estate decisions, lifestyle planning, and workplace relocation analysis.

Args: home_latitude: Home location latitude (decimal degrees) home_longitude: Home location longitude (decimal degrees) work_latitude: Workplace location latitude (decimal degrees) work_longitude: Workplace location longitude (decimal degrees) modes: List of transportation modes to analyze (options: "car", "foot", "bike") depart_at: Optional departure time (format: "HH:MM") for time-sensitive routing

Returns: Comprehensive commute analysis with: - Summary comparing all transportation modes - Detailed route information for each mode - Total distance and duration for each option - Turn-by-turn directions

ParametersJSON Schema
NameRequiredDescriptionDefault
modesNo
depart_atNo
home_latitudeYes
work_latitudeYes
home_longitudeYes
work_longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses that the operation is an analysis producing multi-mode comparisons and is sensitive to departure time, which implies a read-only, side-effect-free operation. It says nothing about permissions, rate limits, mode-availability fallbacks, or error behavior, so the disclosure is useful but not complete.

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?

Purpose is front-loaded and the Args/Returns structure is easy to scan. There is mild padding ('advanced tool,' 'Essential for...'), and the Returns block duplicates what the output schema already provides, but nothing is confusing or badly ordered.

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

Completeness4/5

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

For a complex 6-parameter tool with a rich output schema, the definition covers purpose, parameter formats, and output shape adequately, so an agent can invoke it correctly. The remaining gap is routing guidance among the many nearby siblings, which the description does not address.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate, and it does: it documents all six parameters with units ('decimal degrees'), the accepted mode values ('car', 'foot', 'bike'), and the time format ('HH:MM'). This adds semantics the bare schema (titles only, no enum constraint, no format) entirely lacks.

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?

The description gives a specific verb and resource: 'Perform a detailed commute analysis between home and work locations,' and clarifies it compares multiple transportation modes with metrics. This distinguishes it conceptually from a plain point-to-point router. However, it never names or contrasts with siblings like get_route_directions or suggest_meeting_point, so the agent must infer the boundary itself.

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

Usage Guidelines3/5

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

It offers use contexts ('real estate decisions, lifestyle planning, and workplace relocation analysis'), which implies when the tool is valuable. But it gives no when-not-to-use guidance and does not point to an alternative for simpler single-mode routing, leaving the choice among siblings to inference.

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

analyze_neighborhoodB

Generate a comprehensive neighborhood analysis focused on livability factors.

This advanced analysis tool evaluates a neighborhood based on multiple livability factors, including amenities, transportation options, green spaces, and services. Results include counts and proximity scores for various categories, helping to assess the overall quality and convenience of a residential area. Invaluable for real estate decisions, relocation planning, and neighborhood comparisons.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Analysis radius in meters (defaults to 1000m/1km)

Returns: Comprehensive neighborhood profile including: - Overall neighborhood score - Walkability assessment - Public transportation access - Nearby amenities (shops, restaurants, services) - Green spaces and recreation - Education and healthcare facilities - Detailed counts and distance metrics for each category

ParametersJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It never states whether the operation is read-only, whether it hits a paid/rate-limited API, latency expectations, or auth requirements; it only describes the output contents, leaving the operational profile undisclosed.

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

Conciseness3/5

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

Front-loaded purpose is good, but the 'Invaluable for real estate decisions...' sentence is marketing padding and the entire Returns block is redundant given an output schema exists. Coverage is present but several sentences do not earn their place.

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?

Parameters are fully documented and the output schema covers return shape, so the core is adequate. It still omits sibling routing and any behavioral/safety context, leaving meaningful gaps for an analysis tool with a dozen siblings and no annotations.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate, and it does: it documents all three parameters with units ('latitude: Center point latitude (decimal degrees)', 'radius: Analysis radius in meters') and the 1000m default. This fully covers the 3 params, though it adds no constraints or ranges.

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 clear verb+resource ('Generate a comprehensive neighborhood analysis') and specifies the domains covered (amenities, transportation, green spaces, services). It is understandable apart from generic siblings like explore_area, but it never explicitly names which sibling it supersedes or how it differs from find_nearby_places.

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

Usage Guidelines3/5

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

Use cases are implied via 'Invaluable for real estate decisions, relocation planning, and neighborhood comparisons,' which hints at context. However, there is no explicit when-to-use vs when-to-use-an-alternative guidance and no exclusions against the many nearby-place siblings.

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

explore_areaB

Generate a comprehensive profile of an area including all amenities and features.

This powerful analysis tool creates a detailed overview of a neighborhood or area by identifying and categorizing all geographic features, amenities, and points of interest. Results are organized by category for easy analysis. Excellent for neighborhood research, area comparisons, and location-based decision making.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 500m)

Returns: In-depth area profile including: - Address and location context - Total feature count - Features organized by category and subcategory - Each feature includes name, coordinates, and detailed metadata

ParametersJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It never states that the operation is read-only, whether it incurs cost or rate limits, how large a radius is safe, or how long the analysis takes; instead it relies on marketing language ('This powerful analysis tool') rather than disclosing behavior.

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

Conciseness3/5

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

Front-loaded with the purpose, then a clean Args/Returns structure, but the middle paragraph is padded with promotional filler ('powerful analysis tool', 'Excellent for...') that repeats the opening instead of earning its place.

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?

An output schema exists, yet the description restates the return contents at length (categories, counts, per-feature metadata), which is redundant. It is adequate for invocation but omits sibling differentiation and any behavioral context an agent would want before calling.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate, and it largely does: it documents latitude/longitude as decimal-degree center points and radius as a meters value defaulting to 500. Only minor gaps remain, such as valid ranges or a radius cap.

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 clear verb+resource: generates a comprehensive profile of an area, covering amenities and features organized by category. It is specific about the output shape but never distinguishes itself from close siblings like find_nearby_places, analyze_neighborhood, or search_category.

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

Usage Guidelines3/5

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

Offers implied usage contexts ('neighborhood research, area comparisons, and location-based decision making') but gives no explicit when-to-use conditions, no prerequisites, and no routing to or away from any of the eleven sibling tools.

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

find_ev_charging_stationsA

Locate electric vehicle charging stations near a specific location.

This specialized search tool identifies EV charging infrastructure within a specified distance from a location. Results can be filtered by connector type (Tesla, CCS, CHAdeMO, etc.) and minimum power delivery. Essential for EV owners planning trips or evaluating potential charging stops.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 5000m/5km) connector_types: Optional list of specific connector types to filter by (e.g., ["type2", "ccs", "tesla"]) min_power: Minimum charging power in kW

Returns: List of charging stations with: - Location name and operator - Available connector types - Charging speeds - Number of charging points - Access restrictions - Other relevant metadata

ParametersJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes
min_powerNo
connector_typesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

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 nature of the search and enumerates returned fields (operator, connectors, speeds, points, access restrictions), but says nothing about read-only safety, pagination/limits, or error behavior beyond what the output schema already conveys.

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?

Front-loaded with the purpose and structured into Args/Returns, so it is easy to scan. The sentence 'Essential for EV owners planning trips...' is mild marketing filler that doesn't add actionable information.

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

Completeness4/5

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

With no annotations, an output schema present, and five parameters at 0% schema coverage, the description compensates well by documenting every parameter and the purpose. It is slightly incomplete on read-only expectations and routing versus generic nearby-search siblings.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must carry param meaning, and it documents all five: lat/long as center point in decimal degrees, radius default of 5000m, connector_types with concrete examples, and min_power in kW. Connector examples are illustrative ('etc.') rather than exhaustive, leaving some ambiguity.

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

Purpose5/5

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

States a specific verb (Locate) and resource (EV charging stations) with scope ('near a specific location'), and marks itself as a 'specialized search tool' that distinguishes it from the generic find_nearby_places/search_category siblings without opening their schemas.

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

Usage Guidelines4/5

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

Gives clear usage context ('planning trips or evaluating potential charging stops') and the filtering intent, but names no alternatives and provides no exclusions or conditions for choosing this over find_nearby_places or search_category.

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

find_nearby_placesA

Discover points of interest and amenities near a specific location.

This tool performs a comprehensive search around a geographic point to identify nearby establishments, amenities, and points of interest. Results are organized by category and subcategory, making it easy to find specific types of places. Essential for location-based recommendations, neighborhood analysis, and proximity-based decision making.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 1000m/1km) categories: List of OSM categories to search for (e.g., ["amenity", "shop", "tourism"]). If omitted, searches common categories. limit: Maximum number of total results to return

Returns: Structured dictionary containing: - Original query parameters - Total count of places found - Results grouped by category and subcategory - Each place includes name, coordinates, and associated tags

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
radiusNo
latitudeYes
longitudeYes
categoriesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it partially meets it: it discloses the default radius and that results are grouped by category, and the 'discover/search' framing implies a read-only operation. However, it says nothing about permissions, rate limits, error behavior, or pagination, so key behavioral traits remain undisclosed.

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?

Purpose is front-loaded and the Args section is justified given 0% schema coverage. The Returns block duplicates the existing output schema and the multi-sentence framing paragraph is somewhat padded, but nothing is seriously wasteful.

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

Completeness4/5

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

For a 5-parameter read tool, the definition covers purpose, every parameter, and the result shape, which is enough to invoke it correctly. It is slightly incomplete on routing between this and the specialized sibling find_* tools, which an agent would still have to infer.

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

Parameters5/5

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

Schema coverage is 0%, so the description must compensate and it does: it defines all five parameters, gives the radius default (1000m/1km), explains that categories accepts OSM-style values with concrete examples (['amenity','shop','tourism']) and that omitting it searches common categories, and clarifies limit is a *total* result cap. This adds meaning far beyond the bare schema.

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?

The description opens with a specific verb+resource ('Discover points of interest and amenities near a specific location') and elaborates that results are grouped by category and subcategory. It clearly conveys the operation, but it never contrasts itself with generic siblings like explore_area or search_category, so an agent gets no explicit differentiation.

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

Usage Guidelines3/5

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

It names use contexts ('location-based recommendations, neighborhood analysis, and proximity-based decision making'), which implies when the tool is appropriate, but offers no when-not guidance or alternatives. Notably, it gives no hint about when to prefer this general search over narrow siblings such as find_schools_nearby, find_ev_charging_stations, or find_parking_facilities.

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

find_parking_facilitiesA

Locate parking facilities near a specific location.

This tool finds parking options (lots, garages, street parking) near a specified location. Results can be filtered by parking type and include capacity information where available. Useful for trip planning, city navigation, and evaluating parking availability in urban areas.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 1000m/1km) parking_type: Optional filter for specific types of parking facilities ("surface", "underground", "multi-storey", etc.)

Returns: List of parking facilities with: - Name and type - Capacity information if available - Fee structure if available - Access restrictions - Distance from search point

ParametersJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes
parking_typeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses that results can be filtered by parking type and include capacity information where available, but it does not explicitly state that the operation is read-only, nor does it mention permissions, rate limits, or pagination behavior.

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?

The description is front-loaded with a clear first sentence and structured with Args/Returns sections. It is slightly verbose: the second sentence largely restates the first, and the 'Useful for...' sentence is filler rather than actionable guidance.

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

Completeness4/5

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

Given four parameters, two required, and the presence of an output schema, the description provides adequate coverage of inputs and even describes return fields. The main gap is the absence of usage guidance relative to sibling tools, but the core information needed to invoke the tool correctly is present.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully document parameters. It does so clearly: latitude and longitude with decimal-degree units, radius with meter units and a 1000m default, and parking_type as an optional filter with concrete examples like 'surface' and 'underground'.

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?

The description states a specific verb and resource: 'Locate parking facilities near a specific location.' This clearly distinguishes it from generic siblings like find_nearby_places or find_ev_charging_stations by resource, but it does not explicitly name or contrast against any sibling tool.

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

Usage Guidelines3/5

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

The description gives implied usage through 'Useful for trip planning, city navigation, and evaluating parking availability in urban areas,' but offers no explicit when-to-use guidance, no exclusions, and no mention of alternative tools like find_nearby_places or explore_area.

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

find_schools_nearbyB

Locate educational institutions near a specific location, filtered by education level.

This specialized search tool identifies schools, colleges, and other educational institutions within a specified distance from a location. Results can be filtered by education level (elementary, middle, high school, university, etc.). Essential for families evaluating neighborhoods or real estate purchases with education considerations.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 2000m/2km) education_levels: Optional list of specific education levels to filter by (e.g., ["elementary", "secondary", "university"])

Returns: List of educational institutions with: - Name and type - Distance from search point - Education levels offered - Contact information if available - Other relevant metadata

ParametersJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes
education_levelsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations at all, the description carries the full behavioral burden, yet it discloses no limits: no auth/permission requirements, no maximum radius or result count, no pagination or sorting behavior, no note on whether results are cached or how distance is computed. The only behavioral detail (radius default of 2000m) is really parameter information.

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?

Purpose and scope are front-loaded in the first two sentences, and the Args block is compact. The Returns section is somewhat redundant given an output schema exists, which costs a little conciseness but not much.

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

Completeness4/5

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

For a 4-parameter geo-search with an output schema, the definition covers the required inputs, units, defaults and filter semantics, so an agent can call it correctly. The main gap is routing guidance versus the many nearby siblings and any result-limit expectations.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate and largely does: it explains latitude/longitude as the search center in decimal degrees, radius as meters with a 2000m default, and education_levels as an optional filter with concrete example values. It stops short of enumerating the valid education-level strings, which the schema does not constrain with an enum either.

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?

The description gives a specific verb (locate/find) and resource (educational institutions: schools, colleges) and frames itself as a 'specialized search tool', which implies it is narrower than generic place search. It does not, however, explicitly name or distinguish itself from siblings like find_nearby_places or analyze_neighborhood, so an agent must infer the boundary.

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

Usage Guidelines3/5

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

It offers a motivating context ('essential for families evaluating neighborhoods or real estate') which implies when to reach for it, but gives no explicit when-not guidance and never names an alternative such as find_nearby_places or search_category. Usage is implied rather than stated.

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

geocode_addressA

Convert an address or place name to geographic coordinates with detailed location information.

This tool takes a text description of a location (such as an address, landmark name, or place of interest) and returns its precise geographic coordinates along with rich metadata. The results can be used for mapping, navigation, location-based analysis, and as input to other geospatial tools.

Args: address: The address, place name, landmark, or description to geocode (e.g., "Empire State Building", "123 Main St, Springfield", "Golden Gate Park, San Francisco")

Returns: List of matching locations with: - Geographic coordinates (latitude/longitude) - Formatted address - Administrative boundaries (city, state, country) - OSM type and ID - Bounding box (if applicable) - Importance ranking

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It usefully discloses that multiple matches may be returned ('List of matching locations') and what each result contains, but says nothing about no-match behavior, ambiguity/disambiguation, rate limits, or any auth requirements.

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

Conciseness3/5

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

The first sentence is a strong front-loaded summary, but the second paragraph largely restates it and the Returns block duplicates a field-by-field list that the output schema already provides.

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

Completeness4/5

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

For a single-parameter lookup tool with an output schema covering the return shape, the description supplies adequate input semantics and result content. Missing only edge-case behavior (no results, ambiguous queries) and any operational constraints.

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

Parameters4/5

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

Schema description coverage is 0%, but with only one parameter the description compensates well by enumerating accepted input forms with concrete examples (landmark names, street addresses, parks), which is meaning the bare 'address: string' schema does not convey.

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+resource (convert an address to geographic coordinates) and the input domain is unambiguous. The address-to-coordinates direction implicitly distinguishes it from reverse_geocode, but no sibling is named explicitly.

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

Usage Guidelines3/5

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

Usage is implied by the input/output direction and the closing note that results feed 'other geospatial tools,' but there is no explicit when-to-use vs. when-not guidance and no named alternative such as reverse_geocode for the opposite direction.

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

get_route_directionsA

Calculate detailed route directions between two geographic points.

This tool provides comprehensive routing information between two locations using OpenStreetMap/OSRM. The output can be minimized using the steps, overview, and annotations parameters to reduce the response size.

Args: from_latitude: Starting point latitude (decimal degrees) from_longitude: Starting point longitude (decimal degrees) to_latitude: Destination latitude (decimal degrees) to_longitude: Destination longitude (decimal degrees) ctx: Context (provided internally by MCP) mode: Transportation mode ("car", "bike", "foot") steps: Turn-by-turn instructions (True/False, Default: False) overview: Geometry output ("full", "simplified", "false"; Default: "simplified") annotations: Additional segment info (True/False, Default: False)

Returns: Dictionary with routing information (summary, directions, geometry, waypoints)

Example: { "from_latitude": 51.3334193, "from_longitude": 9.4540423, "to_latitude": 51.3295516, "to_longitude": 9.4576721, "mode": "car", "steps": false, "overview": "simplified", "annotations": false }

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNocar
stepsNo
overviewNosimplified
annotationsNo
to_latitudeYes
to_longitudeYes
from_latitudeYes
from_longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the underlying engine (OSRM) and, usefully, that response size is controllable via steps/overview/annotations, plus the return shape. However it does not state that this is a read-only operation, nor mention rate limits, coordinate validation failures, or error behavior.

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?

Well structured with Args/Returns/Example blocks, and the example is genuinely useful given the undocumented schema. The opening two sentences ('Calculate detailed route directions...' and 'provides comprehensive routing information...') restate the same idea, a minor redundancy that keeps it from a 5.

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

Completeness4/5

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

For an 8-parameter tool with an output schema, the description covers purpose, every parameter, and the controlling knobs for output size. No annotations exist, so it should ideally add auth/error/read-only context, but the essential information needed to invoke the tool correctly is present.

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

Parameters4/5

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

Schema coverage is 0%, so the description must compensate, and it largely does: it documents all eight parameters with meanings, defaults (steps=false, overview='simplified', annotations=false), and value options for mode ('car','bike','foot') and overview ('full','simplified','false') that the schema does not enumerate. This adds substantial meaning beyond the bare schema.

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 and resource: 'Calculate detailed route directions between two geographic points,' naming the provider (OSRM) and the parameterized controls. It is immediately clear what the tool does, but it never names or distinguishes itself from siblings like analyze_commute or suggest_meeting_point, so an agent cannot differentiate on description alone.

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

Usage Guidelines3/5

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

Usage is implied by the two-point input model (routing from A to B), but there is no explicit when-to-use, no when-not-to-use, and no alternative sibling named. The agent must infer that this is the point-to-point router rather than derive it from stated guidance.

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

reverse_geocodeA

Convert geographic coordinates to a detailed address and location description.

This tool takes a specific point on Earth (latitude and longitude) and returns comprehensive information about that location, including its address, nearby landmarks, administrative boundaries, and other contextual information. Useful for translating GPS coordinates into human-readable locations.

Args: latitude: The latitude coordinate (decimal degrees, WGS84) longitude: The longitude coordinate (decimal degrees, WGS84)

Returns: Detailed address and location information including: - Formatted address - Building, street, city, state, country - Administrative hierarchy - OSM metadata - Postal code and other relevant identifiers

ParametersJSON Schema
NameRequiredDescriptionDefault
latitudeYes
longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It does convey that the operation is a non-mutating lookup and describes the shape of the returned location data, but it omits permission requirements, rate limits, and what happens for out-of-range or ocean coordinates.

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?

The description is front-loaded with the one-line purpose, then structured into Args and Returns sections. The Returns block partially duplicates the earlier 'including its address, nearby landmarks, administrative boundaries' sentence, and is redundant given an output schema exists, but the overall structure is clean.

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 simple two-parameter read-only tool with an output schema, the description is largely sufficient. Gaps remain: no error/edge-case behavior, no guidance on result precision or coverage limits, and no routing among the eleven sibling geo tools.

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

Parameters4/5

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

Schema description coverage is 0%, so the schema contributes only types. The description compensates by specifying the expected format ('decimal degrees') and the coordinate system ('WGS84'), which is meaningful semantics an agent could not infer. It stops short of stating valid ranges or hemisphere conventions.

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?

The opening sentence states a precise verb and resource ('Convert geographic coordinates to a detailed address'), and the direction of conversion implicitly separates it from the sibling geocode_address. However, it never names that inverse sibling, so the differentiation is left to inference.

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

Usage Guidelines3/5

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

Usage is only implied via 'Useful for translating GPS coordinates into human-readable locations.' There is no explicit statement of when to prefer this over geocode_address or find_nearby_places, and no mention of prerequisites such as coordinate validity or coverage.

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

search_categoryA

Search for specific types of places within a defined geographic area.

This tool allows targeted searches for places matching specific categories within a rectangular geographic region. It's particularly useful for filtering places by type (restaurants, schools, parks, etc.) within a neighborhood or city district. Results include complete location details and metadata about each matching place.

Args: category: Main OSM category to search for (e.g., "amenity", "shop", "tourism", "building") min_latitude: Southern boundary of search area (decimal degrees) min_longitude: Western boundary of search area (decimal degrees) max_latitude: Northern boundary of search area (decimal degrees) max_longitude: Eastern boundary of search area (decimal degrees) subcategories: Optional list of specific subcategories to filter by (e.g., ["restaurant", "cafe"])

Returns: Structured results including: - Query parameters - Count of matching places - List of matching places with coordinates, names, and metadata

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes
max_latitudeYes
min_latitudeYes
max_longitudeYes
min_longitudeYes
subcategoriesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses the response shape (query params, count, matching places with coordinates/metadata), which is useful, but says nothing about result caps, pagination, rate limits, or authentication for what is presumably a read-only search.

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?

The core purpose is front-loaded and the Args block is compact and scannable. The Returns section is somewhat redundant given an output schema already exists, which is the only minor padding.

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

Completeness4/5

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

With 6 parameters, 5 required, and an existing output schema, the description covers required inputs, optional filtering, and the general result contract, so an agent has enough to call it correctly. It stops short of clarifying how it differs from sibling search tools, which is the remaining gap.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate and largely does: it defines category with OSM examples ('amenity', 'shop', 'tourism'), maps each boundary to a cardinal edge (min_latitude = southern, min_longitude = western), and gives subcategory examples. This adds real meaning beyond the bare 'Max Latitude' style titles, though format specifics like decimal-degree ranges are only lightly touched.

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?

The description opens with a specific verb+resource: targeted search for places of a given category inside a rectangular region. It is clear what the tool does and what it returns. However, it never distinguishes itself from close siblings like find_nearby_places or explore_area, leaving the agent to infer which search tool applies.

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

Usage Guidelines3/5

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

It gives implied usage context ('useful for filtering places by type within a neighborhood or city district'), which hints at when to reach for it. But there is no explicit when-not guidance and no naming of alternatives, so the overlap with geocode_address, explore_area, and find_nearby_places is unresolved.

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

suggest_meeting_pointA

Find the optimal meeting place for multiple people coming from different locations.

This tool calculates a central meeting point based on the locations of multiple individuals, then recommends suitable venues near that central point. Ideal for planning social gatherings, business meetings, or any situation where multiple people need to converge from different starting points.

Args: locations: List of dictionaries, each containing the latitude and longitude of a person's location Example: [{"latitude": 37.7749, "longitude": -122.4194}, {"latitude": 37.3352, "longitude": -121.8811}] venue_type: Type of venue to suggest as a meeting point. Options include: "cafe", "restaurant", "bar", "library", "park", etc.

Returns: Meeting point recommendations including: - Calculated center point coordinates - List of suggested venues with names and details - Total number of matching venues in the area

ParametersJSON Schema
NameRequiredDescriptionDefault
locationsYes
venue_typeNocafe

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses the two-phase computation (centroid calculation then venue lookup) and sketches the return payload, but says nothing about permission requirements, behavior when no venues match, location-count limits, or how venue_type matching is performed.

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

Conciseness5/5

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

The purpose is front-loaded in the first sentence, followed by mechanism, then usage context, then parameter and return details. Each block adds distinct information with no filler, and the Args example earns its space by showing the nested structure the 0%-coverage schema omits.

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

Completeness4/5

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

For a two-parameter tool with a rich output schema and no annotations, the description covers purpose, mechanism, usage, and parameter formats adequately. The Returns block partially duplicates the output schema, which is redundant but harmless; the real gap is the absence of any edge-case or failure behavior.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate, and it does: it defines 'locations' as a list of lat/lon dictionaries and provides a concrete two-entry example, and it explains 'venue_type' with sample values. It stops short of stating the default ('cafe', visible only in the schema) or any constraints on list size.

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?

The opening sentence gives a specific verb ('Find') and resource ('optimal meeting place'), and the second sentence clarifies the two-step mechanism (compute a central point, then recommend venues). It implicitly separates itself from single-origin siblings like find_nearby_places or geocode_address by emphasizing multi-person convergence, though no sibling is named explicitly.

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

Usage Guidelines4/5

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

The description states clear usage contexts ('planning social gatherings, business meetings, or any situation where multiple people need to converge'), which tells the agent when this tool is appropriate. It does not, however, name an alternative tool or state when not to use this one.

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. 12 tool updatesv0.2.0
    • First observedanalyze_commute
    • First observedanalyze_neighborhood
    • First observedexplore_area
    • First observedfind_ev_charging_stations
    • First observedfind_nearby_places
    • First observedfind_parking_facilities
    • First observedfind_schools_nearby
    • First observedgeocode_address
    • First observedget_route_directions
    • First observedreverse_geocode
    • First observedsearch_category
    • First observedsuggest_meeting_point

TDQS

A3.6/5.0

Scored across 12 tools

Disambiguation3/5

Several tools overlap substantially: explore_area, find_nearby_places, analyze_neighborhood, and search_category all return categorized POIs in an area, and find_schools_nearby, find_ev_charging_stations, and find_parking_facilities are essentially specialized subsets that find_nearby_places could handle. The descriptions help distinguish analysis-oriented tools (analyze_neighborhood, explore_area) from search-oriented ones, but an agent could still easily misselect among the area-search family.

Naming Consistency5/5

Every tool follows a clean verb_noun pattern (explore_area, reverse_geocode, geocode_address, find_nearby_places, get_route_directions, search_category, suggest_meeting_point, analyze_commute, etc.). Verbs are consistent (find_/get_/analyze_/search_) and naming is fully snake_case with no deviations.

Tool Count4/5

12 tools is a reasonable, well-scoped size for an OSM geospatial server covering geocoding, routing, search, and analysis. It's slightly heavy given the redundant specialized search tools, but nothing feels padded to the point of being unmanageable.

Completeness4/5

Core geospatial workflows are well covered: both geocoding directions, routing, POI/category search, area and neighborhood analysis, and specialized searches. Minor gaps exist (e.g., isochrones, elevation, map/static image generation, or boundary/administrative lookups), but agents can accomplish most realistic tasks.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Enables AI agents to become geospatially intelligent assistants with tools for location search, smart routing, round trip planning, reverse geocoding, isochrone analysis, route visualization, geofence management, and interactive map display.
    8
    21
    7
    Apache 2.0
  • F
    license
    A
    quality
    C
    maintenance
    OSM-backed multimodal navigation MCP server enabling geocoding, route planning, POI discovery, and urban layout analysis. It provides a structured city graph to LLM apps without proprietary map APIs.
    8
    -