{ "server_info": { "name": "flightradar24-server", "description": "Provides tools for tracking flights and monitoring air traffic", "repo_url": "https://github.com/sunsetcoder/flightradar24-mcp-server", "server_type": "Community Servers", "server_categories": [ "Productivity", "Aerospace" ], "server_version": "1.0.0" }, "tools": [ { "name": "get_flight_positions", "description": "Get real-time flight positions with various filtering options", "input_schema": { "type": "object", "properties": { "airports": { "type": "string", "description": "Comma-separated list of airport ICAO codes" }, "bounds": { "type": "string", "description": "Geographical bounds (lat1,lon1,lat2,lon2)" }, "categories": { "type": "string", "description": "Aircraft categories (P,C,J)" }, "limit": { "type": "number", "description": "Maximum number of results" } } } }, { "name": "get_flight_eta", "description": "Get estimated arrival time for a specific flight", "input_schema": { "type": "object", "properties": { "flightNumber": { "type": "string", "description": "Flight number (e.g., UA123)", "pattern": "^[A-Z0-9]{2,8}$" } }, "required": [ "flightNumber" ] } } ], "resources": [], "prompts": [] }