Skip to main content
Glama

Tolls MCP Server

Model Context Protocol server for the TRANSCEND Tolls Calculator API.

Calculate toll costs, list operators, and get tariff data across Spain, Portugal, and France — all from your LLM assistant.

Tools

Tool

Description

calculate_toll

Calculate toll costs between two coordinates for a vehicle type

list_operators

List all toll operators with their highways and countries

get_tariffs

Get toll tariffs for a specific operator and vehicle type

health_check

Check if the API service is healthy

Related MCP server: mcp-europe-business

Quick Start

Requirements

  • Python 3.10+

  • httpx

Install & Run

pip install httpx
python server.py

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "tolls": {
      "command": "python",
      "args": ["/path/to/server.py"],
      "env": {
        "TOLLS_API_URL": "https://tolls.transcend.cargoffer.com"
      }
    }
  }
}

Environment Variables

Variable

Default

Description

TOLLS_API_URL

https://tolls.transcend.cargoffer.com

API base URL

TOLLS_API_KEY

""

Optional API key for authenticated endpoints

API

The MCP server wraps the TRANSCEND Tolls Calculator REST API.

calculate_toll

Calculate toll costs between two coordinates.

Parameters:

  • origin_lat, origin_lng — Origin coordinates

  • destination_lat, destination_lng — Destination coordinates

  • vehicle_typelight, truck, bus, or motorcycle (default: truck)

Example response:

{
  "totalCost": 14.64,
  "currency": "EUR",
  "segments": [
    {
      "highway": "C-16",
      "operator": "autema",
      "cost": 14.64,
      "distance_km": 45.2
    }
  ]
}

list_operators

List toll operators. Optional country filter (ES, PT, FR).

get_tariffs

Get detailed tariffs for an operator. Parameters:

  • operator — e.g. autema, atlandes, brisa

  • vehicle_type — Optional filter

Deployment

Docker

docker build -t tolls-mcp .
docker run -e TOLLS_API_URL=https://tolls.transcend.cargoffer.com tolls-mcp

Coolify

  1. Create a new service in Coolify

  2. Set the Docker image or use the Dockerfile

  3. Set env vars in the Coolify dashboard

  4. Domain: mcp.tolls.cargoffer.com

License

MIT

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    European business compliance suite for AI agents — 28 tools covering tax ID validation (PT, ES, FR, DE, IT, UK, NL), IBAN verification, EU VAT rates, invoice requirements, e-invoicing rules, payment terms, labor calendar helpers, VAT breakdown calculations and invoice schema validation for 18+ European countries.
    28
  • A
    license
    -
    quality
    B
    maintenance
    AI-powered route optimization MCP server for heavy vehicles and logistics. Calculate truck-optimized routes, predict traffic congestion with LSTM neural networks, compute toll costs, fuel costs and CO2 emissions, find truck stops and check weather along any European route.
    MIT

View all related MCP servers

Related MCP Connectors

  • Neutral freight reference + validation layer for AI agents: ADR, HS, UN/LOCODE, freight math

  • European business verification for AI agents: registry, VAT, sanctions, IBAN. Pay-per-call x402.

  • Live & historical FX rates for AI agents, from European Central Bank data. No API keys.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cargoffer/tolls-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server