Tomtom MCP Server

MCP server integrating TomTom APIs

Remote serverstreamable-httpTypeScript

What is the Tomtom MCP MCP server?

MCP server integrating TomTom APIs. That is what the tomtom mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

The TomTom Maps MCP Server simplifies geospatial development by providing seamless access to TomTom’s location services, including search, routing, traffic and static maps data. It enables easy integration of precise and accurate geolocation data into AI workflows and development environments.

  • Tool browser — — searchable sidebar listing all available tools, with icons distinguishing map-enabled tools from plain tools
  • Pre-filled examples — — each tool loads with example parameters (including show_ui: true for map widgets)
  • Live map widgets — — tools with UI resources render interactive TomTom maps directly in the browser
  • Response metadata — — latency, payload size, estimated token count, content parts, and timestamps for every call
  • Dark / light mode — — toggle with the theme button or follows system preference
  • Keyboard shortcuts — — Cmd+Enter to run, Cmd+K to search tools

The tools it exposes

The server publishes 14 tools. What each one is for:

  • tomtom-geocode — Convert addresses to coordinates with global coverage
  • tomtom-reverse-geocode — Get addresses from GPS coordinates
  • tomtom-fuzzy-search — Intelligent search with typo tolerance
  • tomtom-poi-search — Find specific business categories
  • tomtom-nearby — Discover services within a radius
  • tomtom-routing — Calculate optimal routes between locations
  • tomtom-waypoint-routing — Multi-stop route planning Routing API
  • tomtom-reachable-range — Determine coverage areas by time/distance
  • tomtom-traffic — Real-time incidents data
  • tomtom-static-map — Generate custom map images
  • tomtom-dynamic-map — Advanced map rendering with custom markers, routes, and traffic visualization
  • Prerequisites — For more details, visit the [TomTom API Key Management Documentation](https://developer.tomtom.com/platform/documentation/dashboard/api-key-management

What it needs from you

Configuration is passed through the environment: TOMTOM_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 22.x - TomTom API key How to obtain a TomTom API key: 1. Create a developer account on TomTom Developer Portal and Sign-in 2. Go to API & SDK Keys in the left-hand menu. 3. Click the red Create Key button. 4. Select all available APIs to ensure full access, assign a name to your key, and click Create. For more details, visit the [TomTom API Key

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Tomtom MCP's toolset — tomtom-geocode, tomtom-reverse-geocode, tomtom-fuzzy-search and 11 more — is a fair guide to whether it matches your workflow. It is maintained by tomtom-international; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Tomtom MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Tomtom MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
tomtom-geocodeConvert addresses to coordinates with global coverage
tomtom-reverse-geocodeGet addresses from GPS coordinates
tomtom-fuzzy-searchIntelligent search with typo tolerance
tomtom-poi-searchFind specific business categories
tomtom-nearbyDiscover services within a radius
tomtom-routingCalculate optimal routes between locations
tomtom-waypoint-routingMulti-stop route planning Routing API
tomtom-reachable-rangeDetermine coverage areas by time/distance
tomtom-trafficReal-time incidents data
tomtom-static-mapGenerate custom map images
tomtom-dynamic-mapAdvanced map rendering with custom markers, routes, and traffic visualization
PrerequisitesFor more details, visit the [TomTom API Key Management Documentation](https://developer.tomtom.com/platform/documentation/dashboard/api-key-management).
InstallationThe Installation tool exposed by this server.
ConfigurationThe Configuration tool exposed by this server.

How to install the Tomtom MCP MCP server

**TomTom Orbis Maps:**
```json
{
  "mcpServers": {
    "tomtom-mcp": {
      "type": "http",
      "url": "https://mcp.tomtom.com/maps",
      "headers": {
        "tomtom-api-key": "your_api_key_here",
        "tomtom-maps-backend": "tomtom-orbis-maps"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 22.x - TomTom API key How to obtain a TomTom API key: 1. Create a developer account on TomTom Developer Portal and Sign-in 2. Go to API & SDK Keys in the left-hand menu. 3. Click the red Create Key button. 4. Select all available APIs to ensure full access, assign a name to your key, and click Create. For more details, visit the [TomTom API Key
VariableDescriptionRequired
TOMTOM_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Tomtom MCP to tomtom-geocode.
  • Use Tomtom MCP to tomtom-reverse-geocode.
  • Use Tomtom MCP to tomtom-fuzzy-search.

Frequently asked questions

It connects Tomtom MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (tomtom-geocode, tomtom-reverse-geocode, tomtom-fuzzy-search, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Tomtom MCP directly.