iata-and-icao-codes
4.0
The IATA and ICAO Codes server is a resource for accessing essential airline and airport codes, currently in a free beta phase.
The IATA and ICAO Codes server provides essential airline and airport codes, perfect for enhancing travel-related applications with accurate and up-to-date information. In its early beta phase, the server offers tools to access comprehensive airline data, allowing developers to integrate this information into their travel websites or apps. The server is designed to be user-friendly and aims to enrich the user experience by providing precise airline data. Future developments will include more endpoints and richer datasets to further enhance its capabilities.
Features
- {'name': 'Airlines', 'description': 'Returns the list of airlines, useful for populating dropdowns, lists, or databases with current airline information.'}
- {'name': 'Airline', 'description': 'Finds airlines by IATA code, ideal for retrieving detailed information about a specific airline.'}
MCP Tools
- Airlines: Returns the list of airlines.
- Airline: Finds airlines by IATA code.
Usage with Different Platforms
python
python
import requests
response = requests.get('https://api.example.com/airlines')
print(response.json())
javascript
javascript
fetch('https://api.example.com/airlines')
.then(response => response.json())
.then(data => console.log(data));