Skip to main content
Glama
thatapicompany

Overture Maps MCP server

Overture Maps MCP server

Query Overture Maps data — places (POIs), buildings and administrative divisions — directly from Claude and other MCP-compatible LLM tools.

This is a local (stdio) MCP server that wraps the Overture Maps API. Responses are compact summaries rather than full GeoJSON, so they stay token-efficient, and the tools steer toward cheap, well-scoped queries.

Tools

Tool

What it does

search_places

Search POIs/businesses by country or lat/lng+radius, filtered by category, taxonomy, brand or contact details.

list_place_categories

List available place categories (with counts) for a country or area — use to find valid categories values.

list_place_countries

List every country in the dataset with place/brand counts.

search_divisions

Look up administrative divisions (countries, regions, counties, localities) by name or location.

find_buildings

Find building footprints near a point (id, distance, height/levels).

Related MCP server: Overture Maps MCP Server

Get an API key

Sign up at overturemapsapi.com for a free API key. The public DEMO-API-KEY also works for light testing. Set it as OVERTURE_API_KEY.

Note: the Free tier is for non-commercial use. Commercial use needs a paid plan.

Use with Claude Desktop

Add this to your claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "overture-maps": {
      "command": "npx",
      "args": ["-y", "@thatapicompany/overture-maps-mcp"],
      "env": {
        "OVERTURE_API_KEY": "your-api-key-here"
      }
    }
  }
}

Restart Claude Desktop. You can then ask things like:

  • "Find cafes within 500m of the Eiffel Tower."

  • "List every used car dealer in the UK that has a website."

  • "What administrative region is Springfield in?"

  • "How many places does Overture have for Bermuda?"

Use with other MCP clients

Any client that supports local stdio MCP servers works the same way — run npx -y @thatapicompany/overture-maps-mcp with OVERTURE_API_KEY in the environment.

Local development

npm install
npm run build
OVERTURE_API_KEY=your-key node dist/index.js

Environment variables

Variable

Default

Purpose

OVERTURE_API_KEY

DEMO-API-KEY

Your Overture Maps API key.

OVERTURE_API_BASE

https://api.overturemapsapi.com

Override for staging/self-hosted deployments.

License

MIT

Available Tools

5 tools
find_buildingsA

Find building footprints near a location from Overture Maps. Requires lat+lng; returns compact building summaries (id, distance, height/levels where known) without full geometry.

ParametersJSON Schema
NameRequiredDescriptionDefault
latYesLatitude (required).
lngYesLongitude (required).
limitNoNumber of results (default 10, max 50).
radiusNoRadius in metres (default 250, max 25000).

TDQS

A4.2/5.0
Behavior4/5

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

Describes return structure (id, distance, height/levels) and omission (no full geometry). With no annotations, this adequately informs about behavior.

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?

Two concise sentences; first states purpose, second adds constraints and output details. No redundancy.

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?

Without output schema, description adequately describes output format and limitations. Could mention data source behavior but sufficient given tool complexity.

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 coverage is 100%, so description adds minimal value beyond restating requirements. Lacks explanation of defaults/max for limit and radius, which are in schema.

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?

Clearly states the action (find), resource (building footprints), and source (Overture Maps). Differentiates from sibling tools like search_places by focusing on building footprints.

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?

Explicitly states required parameters (lat, lng) implying geometric queries. Does not list alternative tools, but context of siblings makes usage clear.

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

list_place_categoriesA

List the place categories available in Overture Maps data for a country (or a lat/lng/radius area), with how many places each has. Use this to find valid categories values before calling search_places.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNo
lngNo
radiusNoRadius in metres for a lat/lng area (max 25000).
countryNoISO country code, e.g. GB. Use this OR lat+lng.

TDQS

A4/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 full burden. It indicates a read-like operation (listing with counts) and mentions the OR condition for inputs, but does not detail side effects, auth needs, or return format. The behavior is generally clear but not explicit.

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 description is two sentences: one stating the core function and one providing actionable usage guidance. No unnecessary text.

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 simple listing tool with optional params and no output schema, the description covers the purpose, usage modes, and relation to search_places. It could be slightly more explicit about requiring lat and lng together, but overall it is complete.

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 50% (radius and country have descriptions; lat and lng do not). The description adds value by grouping lat+lng+radius as an alternative to country, but does not provide additional meaning beyond that grouping.

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?

The description clearly states the tool lists place categories for a country or lat/lng/radius area with counts, and explicitly distinguishes it from sibling tools like search_places by positioning it as a prerequisite.

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 explicitly says to use this tool before calling search_places to find valid categories, and notes the alternative input modes (country vs. lat/lng/radius). However, it does not explicitly exclude alternative use cases.

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

list_place_countriesA

List every country present in Overture Maps places data, with the number of places (and brands) in each. Useful to check coverage before searching.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

Accurately describes what the tool does and returns. No annotations, but the description is transparent about the operation. Could mention data freshness or performance, but overall clear.

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?

Two concise sentences, front-loaded purpose, no unnecessary information.

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

Completeness5/5

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

Given no parameters, no output schema, and simple operation, the description is complete for the agent to understand what it does and when to use it.

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?

No parameters, so baseline 4 per instructions. The description does not need to add parameter meaning.

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?

The description clearly states it lists every country with counts of places and brands, and distinguishes itself from siblings by noting its use for checking coverage before searching.

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?

Explicitly says 'Useful to check coverage before searching,' guiding when to use it. No explicit when-not, but clear context.

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

search_divisionsA

Look up administrative divisions (countries, regions, counties, localities) in Overture Maps. Search by name (e.g. 'Springfield'), optionally narrowed by country, subtype (country, region, county, locality, ...) or admin_level. Geometry is omitted by default to save space; set include_geometry=true only if you specifically need the boundary polygon.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNo
lngNo
nameNoDivision name to search for, e.g. 'Paris', 'Bavaria'.
limitNoNumber of results (default 10, max 50).
radiusNo
countryNoISO country code to narrow the search, e.g. FR.
subtypeNoDivision subtype: country, region, county, locality, etc.
admin_levelNoAdministrative level (0 = country, higher = more local).
include_geometryNoInclude the boundary polygon (large). Default false.

TDQS

A3.9/5.0
Behavior3/5

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

Discloses that geometry is omitted by default to save space, implying a performance consideration. But does not mention what happens with lat/lng/radius parameters, or if name is required. No annotations to supplement.

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?

Two sentences, front-loaded with the main purpose, followed by a key usage tip. Every word earns its place, no redundancy.

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?

Given the tool's complexity (9 params, no output schema), description covers the main search workflow but omits explanation of lat/lng/radius, pagination, and error scenarios. Lacks enough detail for an agent to use all parameters correctly.

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?

With 67% schema coverage, description adds value for include_geometry (explains default behavior) and highlights name as primary search key. However, lat, lng, and radius remain undocumented, and description does not clarify their role.

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?

Description clearly states 'Look up administrative divisions' in Overture Maps, listing subtypes and search attributes, distinguishing it from sibling tools like search_places or find_buildings.

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?

Provides clear context: search by name, optionally narrow by country/subtype/admin_level, and set include_geometry only if needed. However, no explicit comparison with sibling tools (e.g., when to use search_places instead).

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

search_placesA

Search for places (points of interest / businesses) in Overture Maps data. You must scope the search to keep it fast and cheap: provide either a country (ISO 3166-1 alpha-2, e.g. GB, US, FR) OR a lat+lng with a radius. Filter by categories (e.g. restaurant, cafe, used_car_dealer — use list_place_categories to discover valid values), brand_name (e.g. Starbucks), or has_contact to only return places with a website/phone. Returns compact summaries (name, category, location, website, phone), not full geometry.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNoLatitude for a radius search. Requires lng.
lngNoLongitude for a radius search. Requires lat.
pageNo0-indexed page number for paging through results.
limitNoNumber of results (default 10, max 50).
radiusNoSearch radius in metres for a lat/lng search (default 1000, max 25000).
countryNoISO 3166-1 alpha-2 country code, e.g. GB, US, FR. Use this OR lat+lng.
taxonomyNoHierarchy-aware category, e.g. 'food_and_drink' matches every restaurant/cafe/bar/bakery.
brand_nameNoRetail chain / brand name, e.g. 'Starbucks', 'Tesco'.
categoriesNoComma-separated category names, e.g. 'restaurant' or 'cafe,bakery'.
has_contactNoOnly return places that have at least one of these contact fields (OR): website, phone, email, social. e.g. 'website,social'.
min_confidenceNoMinimum confidence 0-1 (default 0.5). Higher = more precise, fewer results.

TDQS

A4.3/5.0
Behavior4/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 that searches must be scoped for performance and returns compact summaries, not full geometry. For a read-only search, this is sufficient behavioral context.

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 a single paragraph that front-loads purpose and constraints. It is relatively concise, with every sentence contributing value, though it could be slightly more structured.

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 11 parameters, no output schema, and no annotations, the description adequately covers the main use case, scoping requirements, filtering, and return format. It does not need to repeat parameter details already in schema.

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 100%, so baseline is 3. The description adds value by grouping parameters (country OR lat+lng+radius) and explaining the rationale for scoping, as well as referencing list_place_categories for category values.

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?

The description clearly states it searches for places (points of interest/businesses) in Overture Maps data. It distinguishes from siblings like find_buildings and list_place_categories by focusing on POI search and referencing sibling tools for category discovery.

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?

Explicitly states that the search must be scoped with either a country or lat+lng+radius to keep it fast and cheap. Mentions using list_place_categories for valid categories, but does not explicitly contrast with other sibling tools like search_divisions.

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. 5 tool updatesv0.1.0
    • First observedfind_buildings
    • First observedlist_place_categories
    • First observedlist_place_countries
    • First observedsearch_divisions
    • First observedsearch_places

TDQS

A4.3/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct data type: buildings, place categories, place countries, administrative divisions, and places (POIs). There is no overlap in purpose, and descriptions clearly differentiate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using lowercase and underscores: 'find_buildings', 'list_place_categories', 'list_place_countries', 'search_divisions', 'search_places'. The verbs ('find', 'list', 'search') are appropriate for query operations.

Tool Count5/5

With 5 tools covering building footprints, places, administrative divisions, and metadata lookups, the count is well-scoped for a geographic data query server. It provides essential functionality without being excessive or too sparse.

Completeness4/5

The tool surface covers key query operations for Overture Maps data, including listing metadata and searching for buildings, places, and divisions. However, there is no tool to retrieve full geometry for buildings or places, which may be a gap for some use cases.

Maintenance

ActivityStale
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    An experimental MCP server providing spatial context for LLMs by interfacing with French Geoplateforme services. It enables tasks such as geocoding, altitude lookups, and querying administrative, cadastral, or urban planning data.
    6 npm
    4
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that provides AI agents with geospatial analytics by querying Overture Maps data directly from S3, enabling place analytics, building composition, land use classification, and transportation analysis.
    13
    4
    MIT
  • 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
    -