airport-info

airport-info

4.0

The Airport Info MCP Server provides a fast and comprehensive database of airport codes and related data.

The Airport Info MCP Server is designed to offer quick access to detailed airport information, making it an invaluable tool for developers and businesses that require accurate and up-to-date airport data. It includes essential information such as geo coordinates, addresses, phone numbers, websites, and more. The server is built to provide a fast and complete database of airport codes and data efficiently, with user-friendly tools to easily look up airports using familiar codes.

Features

  • {'name': 'Fast and Complete Database', 'description': 'Access a vast collection of airport codes and data efficiently.'}
  • {'name': 'Detailed Information', 'description': 'Retrieve geo coordinates, contact information, and other essential airport details.'}
  • {'name': 'User-Friendly Tools', 'description': 'Easily look up airports using familiar codes.'}

MCP Tools

  • airport: Lookup an airport by its IATA or ICAO code.

Usage with Different Platforms

python

python
import requests

# Example function to get airport information

def get_airport_info(iata=None, icao=None):
    url = 'http://airport-info-mcp-server/api/airport'
    params = {}
    if iata:
        params['iata'] = iata
    if icao:
        params['icao'] = icao
    response = requests.get(url, params=params)
    return response.json()

# Usage
info = get_airport_info(iata='LAX')
print(info)