Tolls MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Tolls MCP ServerCalculate toll cost from Madrid to Barcelona for a truck"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 costs between two coordinates for a vehicle type |
| List all toll operators with their highways and countries |
| Get toll tariffs for a specific operator and vehicle type |
| Check if the API service is healthy |
Related MCP server: transcend-mcp-server
Quick Start
Requirements
Python 3.10+
httpx
Install & Run
pip install httpx
python server.pyWith 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 |
|
| API base URL |
|
| 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 coordinatesdestination_lat,destination_lng— Destination coordinatesvehicle_type—light,truck,bus, ormotorcycle(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,brisavehicle_type— Optional filter
Deployment
Docker
docker build -t tolls-mcp .
docker run -e TOLLS_API_URL=https://tolls.transcend.cargoffer.com tolls-mcpCoolify
Create a new service in Coolify
Set the Docker image or use the Dockerfile
Set env vars in the Coolify dashboard
Domain:
mcp.tolls.cargoffer.com
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
The Ferryhopper MCP server is a connector for LLMs and AI Agents in maritime travel that exposes ferry routes, schedules, and booking options. It enables AI assistants to search ports and connections across 33 countries and 190+ ferry operators, provide real-time ferry itineraries with indicative prices, and assist users with planning island-hopping or multi-leg journeys by processing natural language queries about ferry times, passenger counts, and travel durations.
Utility data for AI agents: IBAN, EU holidays, VAT rates, time zones, ECB FX. Pay per call.
Live LLM API pricing: token prices, comparisons, cheapest-model lookups. No key required.
Free-trial AI fleet spend meter. 100 calls or 14 days. No auth.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceIntegrates Google Maps routing and traffic capabilities with Claude AI for advanced route planning, real-time traffic analysis, route comparison, and trip cost estimation including fuel and tolls.84 npm1MIT
- AlicenseNot gradedqualityCmaintenanceAI-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
- AlicenseAqualityCmaintenanceEnables querying Renfe train schedules, checking prices, and finding stations across Spain using official GTFS data.33MIT
- AlicenseAqualityAmaintenanceProvides real-time fuel prices at gas stations in Spain using the government's public API. Enables users to find the cheapest fuel in a municipality or list stations sorted by price.2MIT