{"name":"tolls-mcp","version":"1.0.0","description":"Tolls Calculator MCP Server","status":"running","mode":"http-sse","tools":[{"name":"calculate_toll","description":"Calculate toll costs between two coordinates for a vehicle type. Returns route segments with toll costs, total cost, and duration.","inputSchema":{"type":"object","properties":{"origin_lat":{"type":"number","description":"Origin latitude"},"origin_lng":{"type":"number","description":"Origin longitude"},"destination_lat":{"type":"number","description":"Destination latitude"},"destination_lng":{"type":"number","description":"Destination longitude"},"vehicle_type":{"type":"string","enum":["light","truck","bus","motorcycle"],"default":"truck"}},"required":["origin_lat","origin_lng","destination_lat","destination_lng"]}},{"name":"list_operators","description":"List all toll operators with their highways and countries.","inputSchema":{"type":"object","properties":{"country":{"type":"string","description":"Filter by country code (ES, PT, FR)","default":""}}}},{"name":"get_tariffs","description":"Get toll tariffs for a specific operator and vehicle type.","inputSchema":{"type":"object","properties":{"operator":{"type":"string","description":"Operator name (e.g. 'autema', 'brisa')"},"vehicle_type":{"type":"string","description":"Vehicle type (light/truck/bus/motorcycle)","default":"truck"}},"required":["operator"]}},{"name":"health_check","description":"Check if the tolls API service is healthy.","inputSchema":{"type":"object","properties":{}}}]}